Added correct friction factor for ice & packed-ice

This commit is contained in:
Dylan K. Taylor 2017-08-23 18:38:09 +01:00
parent 84c8ac03fb
commit d6266d19b6
2 changed files with 8 additions and 0 deletions

View File

@ -48,6 +48,10 @@ class Ice extends Transparent{
return 2;
}
public function getFrictionFactor() : float{
return 0.98;
}
public function getToolType() : int{
return Tool::TYPE_PICKAXE;
}

View File

@ -41,6 +41,10 @@ class PackedIce extends Solid{
return 0.5;
}
public function getFrictionFactor() : float{
return 0.98;
}
public function getToolType() : int{
return Tool::TYPE_PICKAXE;
}