From 9d339e5e13dfcf38dfa6ea1adeb998b36b8afe68 Mon Sep 17 00:00:00 2001 From: AlgorithmX2 Date: Mon, 28 Jul 2014 20:52:26 -0500 Subject: [PATCH] Wireless can now craft while standing on partial tiles. --- util/Platform.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/util/Platform.java b/util/Platform.java index a451060e5..056dee6a4 100644 --- a/util/Platform.java +++ b/util/Platform.java @@ -299,6 +299,10 @@ public class Platform z = tile.zCoord; } + // valid tile? + if ( !type.CorrectTileOrPart( tile ) ) + tile = null; + if ( (type.getType().isItem() && tile == null) || type.hasPermissions( tile, x, y, z, side, p ) ) { if ( tile == null )