Advertisement
zerotheliger

Untitled

Nov 28th, 2014
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.52 KB | None | 0 0
  1.         @Override
  2.         public void readFromNBT(NBTTagCompound nbt) {
  3.                 // TODO Auto-generated method stub
  4.                 super.readFromNBT(nbt);
  5.  
  6.                 processingTime = nbt.getInteger("procesingTime");
  7.  
  8.                 if(nbt.hasKey("input"))
  9.                         input.readFromNBT(nbt.getCompoundTag("input"));
  10.                 if(nbt.hasKey("output"))
  11.                         output.readFromNBT(nbt.getCompoundTag("output"));
  12.  
  13.                 waterTank.readFromNBT(nbt);
  14.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement