diff --git a/Client/src/main/java/com/baseband/client/module/client/Timer.java b/Client/src/main/java/com/baseband/client/module/client/Timer.java index 96bca99..163e66b 100644 --- a/Client/src/main/java/com/baseband/client/module/client/Timer.java +++ b/Client/src/main/java/com/baseband/client/module/client/Timer.java @@ -17,6 +17,9 @@ import net.minecraftforge.fml.common.eventhandler.SubscribeEvent; @Client public class Timer extends Feature { + @Config("Toggle On Leave") + @Description("Disables Timer on Leave.") + boolean destroy; @Config("Multiplier") @Range("0.05..7.5") public float m = 0.5f; @@ -41,7 +44,9 @@ public class Timer extends Feature { } public void onPlayerDestroy(PlayerDestroyEvent event) { - toggle(); + if(destroy) { + toggle(); + } } @SubscribeEvent diff --git a/Client/src/main/java/com/baseband/client/module/world/AutoEat.java b/Client/src/main/java/com/baseband/client/module/world/AutoEat.java index 8d4b1da..03fa6c9 100644 --- a/Client/src/main/java/com/baseband/client/module/world/AutoEat.java +++ b/Client/src/main/java/com/baseband/client/module/world/AutoEat.java @@ -27,7 +27,7 @@ public class AutoEat extends Feature { @Override public void onEveryTick() { if(enabled) { - text = this + "§7 [" + (eating ? "ACTIVE" : "INACTIVE") + "]"; + text = this + "§7 [" + (eating ? "EATING" : "IDLE") + "]"; } else { text = toString(); }