Revert "CraftingDataPacket: fixed trying to return void result of parent function"

This reverts commit e12ecaf62960dfc71871520e52787589447346ee.
This commit is contained in:
Dylan K. Taylor 2020-01-14 17:16:17 +00:00
parent 2d2c9379cd
commit b1458db47b

View File

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