diff --git a/CHANGELOG.md b/CHANGELOG.md index 1cd3710a5..de934c34c 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ ### 1.4.2 - Added integration for MCMultiPart, this is an optional dependency (raoulvdberge) - Fixed a crash with the Constructor (raoulvdberge) +- Fixed Crafting Pattern model (pauljoda) ### 1.4.1 - Added Storage Monitor (raoulvdberge) diff --git a/src/main/java/com/raoulvdberge/refinedstorage/block/BlockNode.java b/src/main/java/com/raoulvdberge/refinedstorage/block/BlockNode.java index 82c7eec56..bca06abbd 100755 --- a/src/main/java/com/raoulvdberge/refinedstorage/block/BlockNode.java +++ b/src/main/java/com/raoulvdberge/refinedstorage/block/BlockNode.java @@ -19,6 +19,7 @@ import net.minecraft.world.Explosion; import net.minecraft.world.IBlockAccess; import net.minecraft.world.World; +import javax.annotation.Nullable; import java.util.Optional; public abstract class BlockNode extends BlockBase { @@ -116,6 +117,11 @@ public abstract class BlockNode extends BlockBase { return state; } + public boolean hasConnectivityState() { + return false; + } + + @Nullable public static TileNode getNode(IBlockAccess world, BlockPos pos) { TileEntity tile = world.getTileEntity(pos); @@ -131,8 +137,4 @@ public abstract class BlockNode extends BlockBase { return null; } - - public boolean hasConnectivityState() { - return false; - } }