mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2025-03-24 12:26:58 +00:00
Fix breaking computers having no particle or sound
This commit is contained in:
parent
d3b39be9a8
commit
b09200a270
1
projects/common/src/main/java/dan200/computercraft/shared/computer/blocks/AbstractComputerBlock.java
1
projects/common/src/main/java/dan200/computercraft/shared/computer/blocks/AbstractComputerBlock.java
@ -130,6 +130,7 @@ public abstract class AbstractComputerBlock<T extends AbstractComputerBlockEntit
|
||||
|
||||
@Override
|
||||
public void playerWillDestroy(Level world, BlockPos pos, BlockState state, Player player) {
|
||||
super.playerWillDestroy(world, pos, state, player);
|
||||
if (!(world instanceof ServerLevel serverWorld)) return;
|
||||
|
||||
// We drop the item here instead of doing it in the harvest method, as we should
|
||||
|
Loading…
x
Reference in New Issue
Block a user