CraftingDataPacket: fixed trying to return void result of parent function

This commit is contained in:
Dylan K. Taylor 2020-01-14 15:37:06 +00:00
parent 1303cbfe02
commit e12ecaf629

View File

@ -68,7 +68,7 @@ class CraftingDataPacket extends DataPacket{
public function clean(){
$this->entries = [];
$this->decodedEntries = [];
return parent::clean();
parent::clean();
}
protected function decodePayload(){