1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2026-02-04 09:50:16 +00:00

Fix bug where turtle drops inventory when moving (#1276)

This commit is contained in:
Emma
2022-12-29 02:02:02 -07:00
committed by GitHub
parent 2c59b9122b
commit bcdfa7c5ff
4 changed files with 162 additions and 4 deletions

View File

@@ -67,7 +67,7 @@ public class TurtleBlockEntity extends AbstractComputerBlockEntity implements Ba
super(type, pos, state, family);
}
private boolean hasMoved() {
boolean hasMoved() {
return moveState == MoveState.MOVED;
}