1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2025-08-27 16:02:17 +00:00

Merge pull request #28 from techninja1008/fix-turtle-breaking-computer

Change turtle block breaking to call onBreak
This commit is contained in:
Jacob Farley 2021-01-20 15:06:17 -06:00 committed by GitHub
commit 7f2651c23e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -210,7 +210,7 @@ public class TurtleTool extends AbstractTurtleUpgrade {
// Destroy the block // Destroy the block
state.getBlock() state.getBlock()
.onBroken(world, blockPosition, state); .onBreak(world, blockPosition, state, turtlePlayer);
if (world.removeBlock(blockPosition, false)) { if (world.removeBlock(blockPosition, false)) {
state.getBlock() state.getBlock()
.onBroken(world, blockPosition, state); .onBroken(world, blockPosition, state);