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

@ -32,4 +32,8 @@ class Rail extends Flowable{
public function getName(){
return "Rail";
}
public function getHardness(){
return 0.7;
}
}