summaryrefslogtreecommitdiff
path: root/common/darkknight/jewelrycraft/tileentity
diff options
context:
space:
mode:
authorOnyxDarkKnight <sor1n.iliutza16@gmail.com>2013-12-24 21:01:41 +0200
committerOnyxDarkKnight <sor1n.iliutza16@gmail.com>2013-12-24 21:01:41 +0200
commit1997f4547812121223836dcacfcb31ea63acdda6 (patch)
treec6962617e7c2374b9d7393846d94bc99c21f940c /common/darkknight/jewelrycraft/tileentity
parent198677e5b01009a65d243da1d25a14f879df659c (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/tileentity')
-rw-r--r--common/darkknight/jewelrycraft/tileentity/TileEntityJewelrsCraftingTable.java1
-rw-r--r--common/darkknight/jewelrycraft/tileentity/TileEntityMolder.java1
-rw-r--r--common/darkknight/jewelrycraft/tileentity/TileEntitySmelter.java1
3 files changed, 3 insertions, 0 deletions
diff --git a/common/darkknight/jewelrycraft/tileentity/TileEntityJewelrsCraftingTable.java b/common/darkknight/jewelrycraft/tileentity/TileEntityJewelrsCraftingTable.java
index a0e71ef..35457df 100644
--- a/common/darkknight/jewelrycraft/tileentity/TileEntityJewelrsCraftingTable.java
+++ b/common/darkknight/jewelrycraft/tileentity/TileEntityJewelrsCraftingTable.java
@@ -116,6 +116,7 @@ public class TileEntityJewelrsCraftingTable extends TileEntity
this.modifier = new ItemStack(0, 0, 0);
this.hasJewel = false;
this.jewel = new ItemStack(0, 0, 0);
+ timer = -1;
}
}
}
diff --git a/common/darkknight/jewelrycraft/tileentity/TileEntityMolder.java b/common/darkknight/jewelrycraft/tileentity/TileEntityMolder.java
index 58ba82a..9018b0b 100644
--- a/common/darkknight/jewelrycraft/tileentity/TileEntityMolder.java
+++ b/common/darkknight/jewelrycraft/tileentity/TileEntityMolder.java
@@ -98,6 +98,7 @@ public class TileEntityMolder extends TileEntity
JewelryNBT.addMetal(jewelBase, ringMetal);
this.moltenMetal = new ItemStack(0, 0, 0);
this.hasJewelBase = true;
+ cooling = -1;
}
}
}
diff --git a/common/darkknight/jewelrycraft/tileentity/TileEntitySmelter.java b/common/darkknight/jewelrycraft/tileentity/TileEntitySmelter.java
index ff396de..1012741 100644
--- a/common/darkknight/jewelrycraft/tileentity/TileEntitySmelter.java
+++ b/common/darkknight/jewelrycraft/tileentity/TileEntitySmelter.java
@@ -101,6 +101,7 @@ public class TileEntitySmelter extends TileEntity
this.moltenMetal = metal;
this.metal = new ItemStack(0, 0, 0);
this.hasMoltenMetal = true;
+ melting = -1;
}
}
}