diff --git a/src/main/java/me/zeroeightsix/kami/module/modules/utils/BlockData.java b/src/main/java/me/zeroeightsix/kami/module/modules/utils/BlockData.java index d7d2c1fd..b630567f 100644 --- a/src/main/java/me/zeroeightsix/kami/module/modules/utils/BlockData.java +++ b/src/main/java/me/zeroeightsix/kami/module/modules/utils/BlockData.java @@ -20,9 +20,8 @@ import java.util.Objects; * @author 0x2E | PretendingToCode * * TODO: Fix delay timer because that shit broken - * TODO: Move this back to proper category */ -@Module.Info(name = "BlockData", category = Module.Category.EXPERIMENTAL, description = "Right click blocks to display their data") +@Module.Info(name = "BlockData", category = Module.Category.UTILS, description = "Right click blocks to display their data") public class BlockData extends Module { private int delay = 0; @@ -46,7 +45,7 @@ public class BlockData extends Module { NBTTagCompound tag = new NBTTagCompound(); Objects.requireNonNull(t).writeToNBT(tag); - Command.sendChatMessage(getChatName() + "&6&lBlock Tags:\n" + tag + ""); + Command.sendChatMessage(getChatName() + "&6Block Tags:\n" + tag + ""); } } } diff --git a/src/main/java/me/zeroeightsix/kami/module/modules/utils/EntityTools.java b/src/main/java/me/zeroeightsix/kami/module/modules/utils/EntityTools.java index f5a49b4b..33c84e2c 100644 --- a/src/main/java/me/zeroeightsix/kami/module/modules/utils/EntityTools.java +++ b/src/main/java/me/zeroeightsix/kami/module/modules/utils/EntityTools.java @@ -22,9 +22,8 @@ import org.lwjgl.input.Mouse; * Inspired by ForgeHax, recreated with expressed permission from creator * * TODO: Fix delay timer because that shit broken - * TODO: Move this back to proper category */ -@Module.Info(name = "EntityTools", category = Module.Category.EXPERIMENTAL, description = "Right click entities to perform actions on them") +@Module.Info(name = "EntityTools", category = Module.Category.UTILS, description = "Right click entities to perform actions on them") public class EntityTools extends Module { private Setting mode = register(Settings.e("Mode", Mode.DELETE)); private int delay = 0; @@ -50,7 +49,7 @@ public class EntityTools extends Module { if (mode.getValue().equals(Mode.INFO)) { NBTTagCompound tag = new NBTTagCompound(); mc.objectMouseOver.entityHit.writeToNBT(tag); - Command.sendChatMessage(getChatName() + "&6&lEntity Tags:\n" + tag + ""); + Command.sendChatMessage(getChatName() + "&6Entity Tags:\n" + tag + ""); } } }