Don't break the whole thing

This commit is contained in:
abel1502 2025-06-30 09:14:49 +03:00
parent f792fdebe3
commit 2e5882df60
No known key found for this signature in database
GPG Key ID: 076926596A536338
2 changed files with 4 additions and 0 deletions

View File

@ -72,7 +72,9 @@ public class MachineEPress extends BlockDummyable implements IToolable {
if (meta >= 12)
return false;
safeRem = true;
world.setBlockToAir(x, y, z);
safeRem = false;
return true;
}
}

View File

@ -55,7 +55,9 @@ public class MachinePress extends BlockDummyable implements IToolable {
if (meta >= 12)
return false;
safeRem = true;
world.setBlockToAir(x, y, z);
safeRem = false;
return true;
}