Fixed missing hardness on unimplemented blocks causing gameplay issues

This commit is contained in:
Dylan K. Taylor
2017-02-21 11:33:06 +00:00
parent f933107af0
commit e2cdd9eddc
5 changed files with 20 additions and 0 deletions

View File

@ -36,4 +36,8 @@ class StonePressurePlate extends Transparent{
public function isSolid(){
return false;
}
public function getHardness(){
return 0.5;
}
}