SPIGOT-6778: Block#beakNaturally doesn't drop items in chests

This commit is contained in:
DerFrZocker 2021-12-18 11:34:20 +11:00 committed by md_5
parent 41832ce7e4
commit f49ffa7a50
No known key found for this signature in database
GPG Key ID: E8E901AC7C617C11

View File

@ -470,7 +470,8 @@ public class CraftBlock implements Block {
result = true; result = true;
} }
return setTypeAndData(Blocks.AIR.defaultBlockState(), true) && result; // SPIGOT-6778: Directly call setBlock instead of setTypeAndData, so that the tile entiy is not removed and custom remove logic is run.
return world.setBlock(position, Blocks.AIR.defaultBlockState(), 3) && result;
} }
@Override @Override