mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-07 02:59:55 +01:00
Assert that the block is still present after placement. Fixes BUKKIT-1399
This commit is contained in:
parent
1d361c2f48
commit
41b2e89c70
1 changed files with 1 additions and 1 deletions
|
@ -79,7 +79,7 @@ public class ItemBlock extends Item {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (world.setTypeIdAndData(i, j, k, id, data)) {
|
if (world.setTypeIdAndData(i, j, k, id, data)) {
|
||||||
if (Block.byId[id] != null) {
|
if (world.getTypeId(i, j, k) == id && Block.byId[id] != null) {
|
||||||
Block.byId[id].postPlace(world, i, j, k, l);
|
Block.byId[id].postPlace(world, i, j, k, l);
|
||||||
Block.byId[id].postPlace(world, i, j, k, entityhuman);
|
Block.byId[id].postPlace(world, i, j, k, entityhuman);
|
||||||
// CraftBukkit end
|
// CraftBukkit end
|
||||||
|
|
Loading…
Reference in a new issue