Closed DylanG-Random101 closed 13 years ago
Line 35 of ItemArray.java:
setSlot(null, slot);
You're setting it to 'null', which in essence is removing it. But, it just creates the error,
Changed to:
removeItem(slot);
Then it fully removed the item. Check inbox btw.
DylanG
This can be closed, implemented in 135 (right?)
Line 35 of ItemArray.java:
setSlot(null, slot);
You're setting it to 'null', which in essence is removing it. But, it just creates the error,
Changed to:
removeItem(slot);
Then it fully removed the item. Check inbox btw.
DylanG