* @param slot
* @throws UnrecoverableException
*/
public void setSlotItem(short slotid, MCItemSlot slot) throws UnrecoverableException {
if(slotid < 0 || slotid > 9) {
throw new UnrecoverableException("Invalid slotId");
}
this.helditems[slotid] = slot;
this.updateMe(EntityEvent.SELECTEDITEMCHANGED);
}