Misc tweaks

This commit is contained in:
Anuken
2022-09-28 22:58:06 -04:00
parent e9df883e10
commit 4f9fe2a36f
2 changed files with 4 additions and 3 deletions

View File

@@ -238,9 +238,10 @@ public class RtsAI{
}else{
//TODO stopAtTarget parameter could be false, could be tweaked
unit.command().commandTarget(defendTarget == null ? build : defendTarget, defendTarget != null);
//assign a flag, so it will be "mobilized" more easily later
unit.flag = 1;
}
//assign a flag, so it will be "mobilized" more easily later
unit.flag = 1;
}
}
}

View File

@@ -19,7 +19,7 @@ public class CellLiquid extends Liquid{
public int cells = 8;
public @Nullable Liquid spreadTarget;
public float maxSpread = 0.75f, spreadConversion = 1f, spreadDamage = 0.1f, removeScaling = 0.25f;
public float maxSpread = 0.75f, spreadConversion = 1.2f, spreadDamage = 0.11f, removeScaling = 0.25f;
public CellLiquid(String name, Color color){
super(name, color);