Added GLOWSTONE constant

This commit is contained in:
Shoghi Cervantes Pueyo 2013-05-20 16:44:28 +02:00
parent 228075851c
commit 13b00988f0
2 changed files with 7 additions and 1 deletions

View File

@ -129,6 +129,7 @@ define("FENCE", 85);
define("NETHERRACK", 87);
define("SOUL_SAND", 88);
define("GLOWSTONE", 89);
define("GLOWSTONE_BLOCK", 89);
define("CAKE_BLOCK", 92);

View File

@ -29,5 +29,10 @@ class GlowstoneBlock extends SolidBlock{
public function __construct(){
parent::__construct(GLOWSTONE_BLOCK, 0, "Glowstone");
}
public function getDrops(Item $item, Player $player){
return array(
array(GLOWSTONE_DUST, 0, mt_rand(2, 4)),
);
}
}