Skip to content

Commit

Permalink
Fixed #54
Browse files Browse the repository at this point in the history
  • Loading branch information
fuj1n committed Sep 2, 2013
1 parent a08e374 commit 5cb0aa6
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/tconstruct/blocks/logic/CastingTableLogic.java
Expand Up @@ -359,6 +359,7 @@ public void readCustomNBT (NBTTagCompound tags)
this.capacity = tags.getInteger("Capacity");
else
this.capacity = updateCapacity();
castingDelay = tags.getInteger("castingDelay");
}

@Override
Expand All @@ -379,6 +380,7 @@ public void writeCustomNBT (NBTTagCompound tags)
}
tags.setBoolean("Initialized", init);
tags.setInteger("Capacity", capacity);
tags.setInteger("castingDelay", castingDelay);
}

/* Packets */
Expand Down

0 comments on commit 5cb0aa6

Please sign in to comment.