Fixed unlit furnaces glowing in the dark, close #508

Whether Furnace extending BurningFurnace actually makes logical sense is a different question, but that cna be resolved any other time.
This commit is contained in:
Dylan K. Taylor 2017-04-14 15:30:37 +01:00
parent 4ab8233fe0
commit f2159c5948

View File

@ -29,4 +29,8 @@ class Furnace extends BurningFurnace{
public function getName(){
return "Furnace";
}
public function getLightLevel(){
return 0;
}
}