TitanChase

Untitled

Mar 11th, 2017
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. @Override
  2. public NBTTagCompound serializeNBT()
  3. {
  4. NBTTagCompound compound = new NBTTagCompound();
  5. compound.setString(NBT.FactionName, factionName);
  6. return compound;
  7. }
  8.  
  9. @Override
  10. public void deserializeNBT(NBTTagCompound nbt)
  11. {
  12. factionName = nbt.getString(NBT.FactionName);
  13. }
Add Comment
Please, Sign In to add comment