Removed unused Block->isLiquid property

This commit is contained in:
Shoghi Cervantes 2014-11-27 17:26:43 +01:00
parent b1c4578726
commit f866efb622
2 changed files with 0 additions and 2 deletions

View File

@ -542,7 +542,6 @@ class Block extends Position implements Metadatable{
public $isReplaceable = false;
public $isPlaceable = true;
public $hasPhysics = false;
public $isLiquid = false;
public $isFullBlock = true;
public $x = 0;
public $y = 0;

View File

@ -30,7 +30,6 @@ use pocketmine\math\Vector3;
abstract class Liquid extends Transparent{
public $hasEntityCollision = true;
public $isLiquid = true;
public $breakable = false;
public $isReplaceable = true;
public $isSolid = false;