Fixed interacting with Air returning a false block.

This commit is contained in:
feildmaster 2012-04-01 04:58:11 -05:00
parent 7c137d8b19
commit 058bd748b6

View file

@ -142,7 +142,7 @@ public class CraftEventFactory {
if (action != Action.LEFT_CLICK_AIR && action != Action.RIGHT_CLICK_AIR) { if (action != Action.LEFT_CLICK_AIR && action != Action.RIGHT_CLICK_AIR) {
throw new IllegalArgumentException(); throw new IllegalArgumentException();
} }
return callPlayerInteractEvent(who, action, 0, 255, 0, 0, itemstack); return callPlayerInteractEvent(who, action, 0, 256, 0, 0, itemstack);
} }
public static PlayerInteractEvent callPlayerInteractEvent(EntityHuman who, Action action, int clickedX, int clickedY, int clickedZ, int clickedFace, ItemStack itemstack) { public static PlayerInteractEvent callPlayerInteractEvent(EntityHuman who, Action action, int clickedX, int clickedY, int clickedZ, int clickedFace, ItemStack itemstack) {