diff options
author | Lorenz <lo.scherf@gmail.com> | 2022-08-15 21:12:32 +0200 |
---|---|---|
committer | Lorenz <lo.scherf@gmail.com> | 2022-08-15 21:12:32 +0200 |
commit | 36e434d6e117d1606cebfe88717b68f7476b5a02 (patch) | |
tree | 45ddf5c69932354e91295b5e39a7795fb2c5d319 /src/main/java/at/hannibal2/skyhanni/config | |
parent | 9580e659ff584204fbb7c424540e9ca76cfd1c3d (diff) | |
download | skyhanni-36e434d6e117d1606cebfe88717b68f7476b5a02.tar.gz skyhanni-36e434d6e117d1606cebfe88717b68f7476b5a02.tar.bz2 skyhanni-36e434d6e117d1606cebfe88717b68f7476b5a02.zip |
add blaze slayer tier 1
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/Misc.java | 4 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/gui/commands/Commands.java | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Misc.java b/src/main/java/at/hannibal2/skyhanni/config/features/Misc.java index 3b1199ea6..0f9d735a6 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Misc.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Misc.java @@ -50,7 +50,7 @@ public class Misc { "\u00a7bSpider Slayer (not implemented)", "\u00a7bWolf Slayer (not implemented)", "\u00a7bVoidgloom Seraph", - "\u00a7bBlaze Slayer (not implemented)", + "\u00a7bBlaze Slayer (only tier 1 yet)", "\u00a7bHeadless Horseman (bugged)", "\u00a7bDungeon Floor 1", "\u00a7bDungeon Floor 2", @@ -63,7 +63,7 @@ public class Misc { ) @ConfigAccordionId(id = 1) //TODO only show currently working and tested features - public List<Integer> damageIndicatorBossesToShow = new ArrayList<>(Arrays.asList(0, 1, 2, 5, 8)); + public List<Integer> damageIndicatorBossesToShow = new ArrayList<>(Arrays.asList(0, 1, 2, 5, 8, 9)); @Expose diff --git a/src/main/java/at/hannibal2/skyhanni/config/gui/commands/Commands.java b/src/main/java/at/hannibal2/skyhanni/config/gui/commands/Commands.java index 411e5b14d..cf2271eb9 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/gui/commands/Commands.java +++ b/src/main/java/at/hannibal2/skyhanni/config/gui/commands/Commands.java @@ -72,7 +72,7 @@ public class Commands { "copyentities", new SimpleCommand.ProcessCommandRunnable() { public void processCommand(ICommandSender sender, String[] args) { - CopyNearbyEntitiesCommand.Companion.testCommand(args); + CopyNearbyEntitiesCommand.INSTANCE.command(args); } } ) |