Changed final public methods

This commit is contained in:
Shoghi Cervantes Pueyo 2013-04-04 12:04:03 +02:00
parent cd946a7273
commit 463e82a1e7
2 changed files with 8 additions and 8 deletions

View File

@ -159,7 +159,7 @@ abstract class Block extends Vector3{
$this->breakTime = 0.25;
}
public function getName(){
final public function getName(){
return $this->name;
}

View File

@ -73,15 +73,15 @@ class Item{
}
}
public function getName(){
final public function getName(){
return $this->name;
}
public function isPlaceable(){
final public function isPlaceable(){
return (($this->block instanceof Block) and $this->block->isPlaceable === true);
}
public function getBlock(){
final public function getBlock(){
if($this->block instanceof Block){
return $this->block;
}else{
@ -89,19 +89,19 @@ class Item{
}
}
public function getID(){
final public function getID(){
return $this->id;
}
public function getMetadata(){
final public function getMetadata(){
return $this->meta;
}
public function getMaxStackSize(){
final public function getMaxStackSize(){
return $this->maxStackSize;
}
public function isPickaxe(){ //Returns false or level of the pickaxe
final public function isPickaxe(){ //Returns false or level of the pickaxe
switch($this->id){
case IRON_PICKAXE:
return 3;