Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @Override
- public void setInventorySlotContents(int slot, ItemStack itemStack)
- {
- if (slot == 0)
- {
- displayStack = itemStack;
- }
- else
- {
- contents[slot - 1] = itemStack;
- }
- if (itemStack != null && itemStack.stackSize > this.getInventoryStackLimit())
- {
- itemStack.stackSize = this.getInventoryStackLimit();
- }
- markDirty();
- }
- @Override
- public void markDirty()
- {
- super.markDirty();
- worldObj.markBlockForUpdate(pos);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement