Snow Layer is now replaceable and flowable

This commit is contained in:
Shoghi Cervantes Pueyo 2013-02-04 23:29:01 +01:00
parent 23dc1033d5
commit 67925b7df2

View File

@ -25,9 +25,10 @@ the Free Software Foundation, either version 3 of the License, or
*/ */
class SnowLayerBlock extends TransparentBlock{ class SnowLayerBlock extends FlowableBlock{
public function __construct($meta = 0){ public function __construct($meta = 0){
parent::__construct(SNOW_LAYER, $meta, "Snow"); parent::__construct(SNOW_LAYER, $meta, "Snow Layer");
$this->isReplaceable = true;
} }
} }