Tile cost tweak

This commit is contained in:
Anuken
2019-01-01 13:48:20 -05:00
parent dd1034e37b
commit a105c017d5
18 changed files with 562 additions and 607 deletions

View File

@@ -365,6 +365,10 @@ public class Tile implements Position, TargetTrait{
cost += 1;
}
if(target().synthetic()){
cost += target().block().health / 10f;
}
if(floor.isLiquid){
cost += 100f;
}