Block Names

This commit is contained in:
Shoghi Cervantes Pueyo
2013-02-02 15:42:06 +01:00
parent 5a054a8ab4
commit 888e84dd69
5 changed files with 124 additions and 101 deletions

View File

@ -49,6 +49,10 @@ abstract class Block{
$this->shortname = strtolower(str_replace(" ", "_", $name));
}
public function getName(){
return $this->name;
}
final public function getID(){
return $id;
}

View File

@ -82,7 +82,7 @@ define("MOSS_STONE", 48);
define("MOSSY_STONE", 48);
define("OBSIDIAN", 49);
define("TORCH", 50);
define("FiRE", 51);
define("FIRE", 51);
define("WOOD_STAIRS", 53);
define("CHEST", 54);