Advertisement
Guest User

Untitled

a guest
May 22nd, 2016
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. /**
  2. * Called when the chunk's TE update tag, gotten from {@link #getUpdateTag()}, is received on the client.
  3. * <p>
  4. * Used to handle this tag in a special way. By default this simply calls {@link #readFromNBT(NBTTagCompound)}.
  5. *
  6. * @param tag The {@link NBTTagCompound} sent from {@link #getUpdateTag()}
  7. */
  8. public void handleUpdateTag(NBTTagCompound tag)
  9. {
  10. this.readFromNBT(tag);
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement