Skip to content

Commit

Permalink
1.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
BenceX100 committed Dec 8, 2024
1 parent c4f25ab commit 83582c5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.artillexstudios</groupId>
<artifactId>AxSellwands</artifactId>
<version>1.7.0</version>
<version>1.8.0</version>
<packaging>jar</packaging>

<name>AxSellwands</name>
Expand Down Expand Up @@ -156,7 +156,7 @@
<dependency>
<groupId>com.artillexstudios.axapi</groupId>
<artifactId>axapi</artifactId>
<version>1.4.397</version>
<version>1.4.435</version>
<scope>compile</scope>
<classifier>all</classifier>
</dependency>
Expand Down
10 changes: 5 additions & 5 deletions src/main/java/com/artillexstudios/axsellwands/AxSellwands.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
import com.artillexstudios.axapi.libs.boostedyaml.boostedyaml.settings.general.GeneralSettings;
import com.artillexstudios.axapi.libs.boostedyaml.boostedyaml.settings.loader.LoaderSettings;
import com.artillexstudios.axapi.libs.boostedyaml.boostedyaml.settings.updater.UpdaterSettings;
import com.artillexstudios.axapi.utils.FeatureFlags;
import com.artillexstudios.axapi.utils.MessageUtils;
import com.artillexstudios.axapi.utils.StringUtils;
import com.artillexstudios.axapi.utils.featureflags.FeatureFlags;
import com.artillexstudios.axsellwands.commands.Commands;
import com.artillexstudios.axsellwands.hooks.HookManager;
import com.artillexstudios.axsellwands.listeners.CraftListener;
Expand Down Expand Up @@ -114,9 +114,9 @@ public void enable() {
if (CONFIG.getBoolean("update-notifier.enabled", true)) new UpdateNotifier(this, 5725);
}

public void updateFlags() {
FeatureFlags.USE_LEGACY_HEX_FORMATTER.set(true);
FeatureFlags.PACKET_ENTITY_TRACKER_ENABLED.set(true);
FeatureFlags.HOLOGRAM_UPDATE_TICKS.set(20L);
public void updateFlags(FeatureFlags flags) {
flags.USE_LEGACY_HEX_FORMATTER.set(true);
flags.PACKET_ENTITY_TRACKER_ENABLED.set(true);
flags.HOLOGRAM_UPDATE_TICKS.set(20L);
}
}

0 comments on commit 83582c5

Please sign in to comment.