Removed code remove comments

This commit is contained in:
Shoghi Cervantes
2014-03-06 13:16:44 +01:00
parent bbd66e6ad1
commit c08bf3ef86
350 changed files with 6317 additions and 5559 deletions

View File

@ -24,11 +24,11 @@ class LapisOreBlock extends SolidBlock{
parent::__construct(LAPIS_ORE, 0, "Lapis Ore");
$this->hardness = 15;
}
public function getBreakTime(Item $item, Player $player){
if(($player->gamemode & 0x01) === 0x01){
return 0.20;
}
}
switch($item->isPickaxe()){
case 5:
return 0.6;
@ -46,9 +46,9 @@ class LapisOreBlock extends SolidBlock{
return array(
array(DYE, 4, mt_rand(4, 8)),
);
}else{
} else{
return array();
}
}
}