Implemented light population, added Level->getFullLight()

This commit is contained in:
Shoghi Cervantes
2014-11-28 14:44:27 +01:00
parent d139e5f342
commit b3c3f896a3
12 changed files with 105 additions and 0 deletions

View File

@ -23,6 +23,9 @@ namespace pocketmine\block;
class GlowingObsidian extends Solid{
public $lightLevel = 12;
public function __construct($meta = 0){
parent::__construct(self::GLOWING_OBSIDIAN, $meta, "Glowing Obsidian");
}