Fixed obsidian hardness, no more destroying obsidian with TNT

This commit is contained in:
Dylan K. Taylor
2017-06-23 20:01:55 +01:00
parent ebda6ec19b
commit 80f2519d7d
2 changed files with 13 additions and 0 deletions

View File

@ -40,4 +40,11 @@ class GlowingObsidian extends Solid{
return 12;
}
public function getHardness() : float{
return 10;
}
public function getBlastResistance() : float{
return 50;
}
}