finish testing blockdata and entitytools

This commit is contained in:
Bella 2020-03-22 17:22:30 -04:00
parent 098d7081fc
commit 6657061263
No known key found for this signature in database
GPG Key ID: 815562EA23BFE344
2 changed files with 4 additions and 6 deletions

View File

@ -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 + "");
}
}
}

View File

@ -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> 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 + "");
}
}
}