Fix wrong hardness value for Podzol (#3709)

This commit is contained in:
TheNewHEROBRINEX 2020-07-16 23:07:41 +02:00 committed by GitHub
parent f9bd7016aa
commit 8bba25f4f5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -40,6 +40,6 @@ class Podzol extends Solid{
}
public function getHardness() : float{
return 2.5;
return 0.5;
}
}