From 6b25f9fbe34fda6e0a8723100e66a78b012078c1 Mon Sep 17 00:00:00 2001 From: "Claude (Chronicler #83 - The Compiler)" Date: Thu, 16 Apr 2026 00:06:11 -0500 Subject: [PATCH] fix(bitch-bot): disable recompilation, remove invalid setName call --- services/bitch-bot/1.21.1/build.gradle | 5 ++++- .../com/firefrostgaming/bitchbot/CommandBlockPlacer.java | 1 - 2 files changed, 4 insertions(+), 2 deletions(-) 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 {