diff options
| author | OnyxDarkKnight <sor1n.iliutza16@gmail.com> | 2013-12-24 21:01:41 +0200 |
|---|---|---|
| committer | OnyxDarkKnight <sor1n.iliutza16@gmail.com> | 2013-12-24 21:01:41 +0200 |
| commit | 1997f4547812121223836dcacfcb31ea63acdda6 (patch) | |
| tree | c6962617e7c2374b9d7393846d94bc99c21f940c /common/darkknight/jewelrycraft/block/BlockMolder.java | |
| parent | 198677e5b01009a65d243da1d25a14f879df659c (diff) | |
Fixed some bugs with tile entities, fixed rings rendering issue, added interdimensional teleporting rings and ender chest ring
Diffstat (limited to 'common/darkknight/jewelrycraft/block/BlockMolder.java')
| -rw-r--r-- | common/darkknight/jewelrycraft/block/BlockMolder.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/darkknight/jewelrycraft/block/BlockMolder.java b/common/darkknight/jewelrycraft/block/BlockMolder.java index cae036e..f26c232 100644 --- a/common/darkknight/jewelrycraft/block/BlockMolder.java +++ b/common/darkknight/jewelrycraft/block/BlockMolder.java @@ -84,6 +84,7 @@ public class BlockMolder extends BlockContainer { if(te.hasJewelBase) dropItem(te.worldObj, (double)te.xCoord, (double)te.yCoord, (double)te.zCoord, te.jewelBase.copy()); if(te.hasMold) dropItem(world, (double)te.xCoord, (double)te.yCoord, (double)te.zCoord, te.mold.copy()); + world.markTileEntityForDespawn(te); } super.breakBlock(world, i, j, k, par5, par6); |
