From b33102aa38f460da3f21708d9bb31f030c517cf7 Mon Sep 17 00:00:00 2001 From: Lorenz Date: Sun, 4 Sep 2022 19:03:24 +0200 Subject: add highlight different ashfang blazes in their respective color --- src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java') diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java index d77c4f9cc..4407eb7f8 100644 --- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java +++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java @@ -28,10 +28,7 @@ import at.hannibal2.skyhanni.features.items.ItemStars; import at.hannibal2.skyhanni.features.items.RngMeterInventory; import at.hannibal2.skyhanni.features.items.abilitycooldown.ItemAbilityCooldown; import at.hannibal2.skyhanni.features.minion.MinionFeatures; -import at.hannibal2.skyhanni.features.nether.ashfang.AshfangBlazingSouls; -import at.hannibal2.skyhanni.features.nether.ashfang.AshfangFreezeCooldown; -import at.hannibal2.skyhanni.features.nether.ashfang.AshfangGravityOrbs; -import at.hannibal2.skyhanni.features.nether.ashfang.AshfangNextResetCooldown; +import at.hannibal2.skyhanni.features.nether.ashfang.*; import at.hannibal2.skyhanni.test.LorenzTest; import net.minecraft.client.Minecraft; import net.minecraft.client.gui.GuiScreen; @@ -91,6 +88,7 @@ public class SkyHanniMod { registerEvent(new SummoningSoulsName()); registerEvent(new AshfangGravityOrbs()); registerEvent(new AshfangBlazingSouls()); + registerEvent(new AshfangHighlightBlazes()); registerEvent(new ItemStars()); registerEvent(new MinionFeatures()); registerEvent(new RealTime()); -- cgit