SPIGOT-5373: Simultaneous left+right click in creative mode does not work

This commit is contained in:
md_5 2019-10-19 20:09:26 +11:00
parent 13caf84858
commit 606c19e26c

View File

@ -242,7 +242,7 @@
}
}
}
@@ -272,12 +410,41 @@
@@ -272,12 +410,40 @@
}
}
@ -253,7 +253,6 @@
BlockPosition blockposition = movingobjectpositionblock.getBlockPosition();
IBlockData iblockdata = world.getType(blockposition);
+ EnumInteractionResult enuminteractionresult = EnumInteractionResult.PASS;
+ if (iblockdata.isAir()) return enuminteractionresult;
+ boolean cancelledBlock = false;
if (this.gamemode == EnumGamemode.SPECTATOR) {
@ -284,7 +283,7 @@
if (itileinventory != null) {
entityhuman.openContainer(itileinventory);
@@ -289,24 +456,26 @@
@@ -289,24 +455,26 @@
boolean flag = !entityhuman.getItemInMainHand().isEmpty() || !entityhuman.getItemInOffHand().isEmpty();
boolean flag1 = entityhuman.isSneaking() && flag;