traitor / Minecraft-Server-Mod

Server administration mod and API for Minecraft beta multiplayer server
220 stars 91 forks source link

Hopefully fixed NPE: Issue 245. #250

Closed DylanG-Random101 closed 13 years ago

DylanG-Random101 commented 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

14mRh4X0r commented 13 years ago

This can be closed, implemented in 135 (right?)