mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-24 11:38:29 +01:00
Fix for water and lava removal in creative mode BUKKIT-362
This commit is contained in:
parent
474b7838a6
commit
81c751a8a3
@ -50,13 +50,13 @@ public class ItemBucket extends Item {
|
||||
if (event.isCancelled()) {
|
||||
return itemstack;
|
||||
}
|
||||
world.setTypeId(i, j, k, 0);
|
||||
|
||||
if (entityhuman.abilities.canInstantlyBuild) {
|
||||
return itemstack;
|
||||
}
|
||||
// CraftBukkit end
|
||||
|
||||
world.setTypeId(i, j, k, 0);
|
||||
return CraftItemStack.createNMSItemStack(event.getItemStack()); // CraftBukkit
|
||||
}
|
||||
|
||||
@ -67,13 +67,13 @@ public class ItemBucket extends Item {
|
||||
if (event.isCancelled()) {
|
||||
return itemstack;
|
||||
}
|
||||
world.setTypeId(i, j, k, 0);
|
||||
|
||||
if (entityhuman.abilities.canInstantlyBuild) {
|
||||
return itemstack;
|
||||
}
|
||||
// CraftBukkit end
|
||||
|
||||
world.setTypeId(i, j, k, 0);
|
||||
return CraftItemStack.createNMSItemStack(event.getItemStack()); // CraftBukkit
|
||||
}
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user