Fixed FurnaceInventory crash

This commit is contained in:
Shoghi Cervantes 2014-06-12 17:43:46 +02:00
parent 926e7ac0b1
commit 303c947d2a

View File

@ -85,8 +85,8 @@ class FurnaceInventory extends ContainerInventory{
return $this->setItem(0, $item); return $this->setItem(0, $item);
} }
public function onSlotChange($index, $before){ public function onSlotChange($index, $before, $source = null){
parent::onSlotChange($index, $before); parent::onSlotChange($index, $before, $source);
//TODO: implement Furnace scheduled update //TODO: implement Furnace scheduled update
} }
} }