Advertisement
Guest User

Untitled

a guest
Oct 24th, 2014
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. /**
  2. * compares ItemStack argument to the instance ItemStack; returns true if both ItemStacks are equal
  3. */
  4. private boolean isItemStackEqual(ItemStack p_77959_1_)
  5. {
  6. return this.stackSize != p_77959_1_.stackSize ? false : (this.field_151002_e != p_77959_1_.field_151002_e ? false : (this.itemDamage != p_77959_1_.itemDamage ? false : (this.stackTagCompound == null && p_77959_1_.stackTagCompound != null ? false : this.stackTagCompound == null || this.stackTagCompound.equals(p_77959_1_.stackTagCompound))));
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement