Make BlockInventory non-abstract

This commit is contained in:
Dylan K. Taylor 2019-06-25 17:45:07 +01:00
parent 8c2ca098e1
commit ff55f5e9ac

View File

@ -25,7 +25,7 @@ namespace pocketmine\inventory;
use pocketmine\math\Vector3;
abstract class BlockInventory extends BaseInventory{
class BlockInventory extends BaseInventory{
/** @var Vector3 */
protected $holder;