From 9285a2ffdc9729f7b3c6917e44fdc68fc2d253c9 Mon Sep 17 00:00:00 2001 From: Alkalus <3060479+draknyte1@users.noreply.github.com> Date: Sun, 27 May 2018 12:48:44 +1000 Subject: + Added a custom ItemEntity for the Large Chicken Eggs, they now hatch in world. + Added a custom Mutagen Fluid used in making Large Eggs. $ Fixed some issue with BlockPos object having invalid worlds. --- src/Java/gtPlusPlus/core/item/tool/misc/ConnectedBlockFinder.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Java/gtPlusPlus/core/item/tool') diff --git a/src/Java/gtPlusPlus/core/item/tool/misc/ConnectedBlockFinder.java b/src/Java/gtPlusPlus/core/item/tool/misc/ConnectedBlockFinder.java index 622a294dc2..555635741e 100644 --- a/src/Java/gtPlusPlus/core/item/tool/misc/ConnectedBlockFinder.java +++ b/src/Java/gtPlusPlus/core/item/tool/misc/ConnectedBlockFinder.java @@ -75,7 +75,7 @@ public class ConnectedBlockFinder extends BaseItemWithDamageValue{ int x, int y, int z, int side, float hitX, float hitY, float hitZ) { - BlockPos mStartPoint = new BlockPos(x,y,z); + BlockPos mStartPoint = new BlockPos(x,y,z, world); Block mBlockType = world.getBlock(x, y, z); int mBlockMeta = mBlockType.getDamageValue(world, x, y, z); -- cgit