DropItemAction: Consider invalid if the target item is null

it's not possible to drop a null item.
This commit is contained in:
Dylan K. Taylor 2018-08-05 11:32:50 +01:00
parent 7ad0aa56b1
commit 70635d0870

View File

@ -38,7 +38,7 @@ class DropItemAction extends InventoryAction{
}
public function isValid(Player $source) : bool{
return true;
return !$this->targetItem->isNull();
}
public function onPreExecute(Player $source) : bool{