diff options
author | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2018-05-27 12:48:44 +1000 |
---|---|---|
committer | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2018-05-27 12:48:44 +1000 |
commit | 9285a2ffdc9729f7b3c6917e44fdc68fc2d253c9 (patch) | |
tree | d6a2cbc869d186f7da8dfc1e7c2c9b70b510f108 /src/Java/gtPlusPlus/core/util | |
parent | c04dfc745ea5375a030629805e831a39e09671fb (diff) | |
download | GT5-Unofficial-9285a2ffdc9729f7b3c6917e44fdc68fc2d253c9.tar.gz GT5-Unofficial-9285a2ffdc9729f7b3c6917e44fdc68fc2d253c9.tar.bz2 GT5-Unofficial-9285a2ffdc9729f7b3c6917e44fdc68fc2d253c9.zip |
+ 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.
Diffstat (limited to 'src/Java/gtPlusPlus/core/util')
-rw-r--r-- | src/Java/gtPlusPlus/core/util/minecraft/EntityUtils.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Java/gtPlusPlus/core/util/minecraft/EntityUtils.java b/src/Java/gtPlusPlus/core/util/minecraft/EntityUtils.java index 10d14d3d34..d2781dfc48 100644 --- a/src/Java/gtPlusPlus/core/util/minecraft/EntityUtils.java +++ b/src/Java/gtPlusPlus/core/util/minecraft/EntityUtils.java @@ -49,7 +49,7 @@ public class EntityUtils { final int blockX = MathHelper.floor_double(parEntity.posX); final int blockY = MathHelper.floor_double(parEntity.boundingBox.minY)-1; final int blockZ = MathHelper.floor_double(parEntity.posZ); - return new BlockPos(blockX, blockY, blockZ); + return new BlockPos(blockX, blockY, blockZ, parEntity.worldObj); } //TODO |