diff --git a/services/bitch-bot/1.21.1/build.gradle b/services/bitch-bot/1.21.1/build.gradle index c1bc127..35bee00 100644 --- a/services/bitch-bot/1.21.1/build.gradle +++ b/services/bitch-bot/1.21.1/build.gradle @@ -15,7 +15,10 @@ dependencies { } neoForge { - version = neo_version + enable { + version = neo_version + disableRecompilation = true + } runs { server { diff --git a/services/bitch-bot/1.21.1/src/main/java/com/firefrostgaming/bitchbot/CommandBlockPlacer.java b/services/bitch-bot/1.21.1/src/main/java/com/firefrostgaming/bitchbot/CommandBlockPlacer.java index 3572587..913e460 100644 --- a/services/bitch-bot/1.21.1/src/main/java/com/firefrostgaming/bitchbot/CommandBlockPlacer.java +++ b/services/bitch-bot/1.21.1/src/main/java/com/firefrostgaming/bitchbot/CommandBlockPlacer.java @@ -51,7 +51,6 @@ public class CommandBlockPlacer { BlockEntity be = level.getBlockEntity(pos); if (be instanceof CommandBlockEntity cbe) { cbe.getCommandBlock().setCommand(tpCommand); - cbe.getCommandBlock().setName(net.minecraft.network.chat.Component.literal("Bitch Bot — Spawn Return")); cbe.setChanged(); placed++; } else {