fix(bitch-bot): disable recompilation, remove invalid setName call

This commit is contained in:
Claude (Chronicler #83 - The Compiler)
2026-04-16 00:06:11 -05:00
parent 99a3cc72f3
commit 6b25f9fbe3
2 changed files with 4 additions and 2 deletions

View File

@@ -15,7 +15,10 @@ dependencies {
}
neoForge {
version = neo_version
enable {
version = neo_version
disableRecompilation = true
}
runs {
server {

View File

@@ -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 {