This commit is contained in:
Anuken
2025-09-05 12:00:30 -04:00
parent 59f8f5cd11
commit 625c354461
4 changed files with 6 additions and 4 deletions

View File

@@ -476,7 +476,9 @@ public abstract class InputHandler implements InputProcessor, GestureListener{
@Remote(variants = Variant.one)
public static void removeQueueBlock(int x, int y, boolean breaking){
player.unit().removeBuild(x, y, breaking);
if(!player.dead()){
player.unit().removeBuild(x, y, breaking);
}
}
@Remote(targets = Loc.both, called = Loc.server)