Fixed redstone lamp light levels and hardness

This commit is contained in:
Dylan K. Taylor 2017-08-17 11:47:10 +01:00
parent 2cd05bf5b5
commit 9e02f3c4e3
2 changed files with 8 additions and 0 deletions

View File

@ -30,4 +30,8 @@ class LitRedstoneLamp extends RedstoneLamp{
public function getName(){
return "Lit Redstone Lamp";
}
public function getLightLevel(){
return 15;
}
}

View File

@ -34,4 +34,8 @@ class RedstoneLamp extends Solid{
public function getName(){
return "Redstone Lamp";
}
public function getHardness(){
return 0.3;
}
}