Esempio n. 1
0
 @Override
 public void writeToNBT(NBTTagCompound nbt) {
   super.writeToNBT(nbt);
   nbt.setInteger("time", this.getTime());
 }
Esempio n. 2
0
 @Override
 public void readFromNBT(NBTTagCompound nbt) {
   super.readFromNBT(nbt);
   this.setTime(nbt.getInteger("time"));
 }