More achievement cleanup

This commit is contained in:
Anuken
2020-11-03 22:19:50 -05:00
parent 23da62e374
commit caec96615f
7 changed files with 84 additions and 29 deletions

View File

@@ -233,7 +233,7 @@ public class SectorDamage{
//first, calculate the total health of blocks in the path
//radius around the path that gets counted
int radius = 9;
int radius = 8;
IntSet counted = new IntSet();
for(Tile t : sparse2){
@@ -337,7 +337,7 @@ public class SectorDamage{
//enemy units like to aim for a lot of non-essential things, so increase resulting health slightly
info.sumHealth = sumHealth * 1.2f;
//players tend to have longer range units/turrets, so assume DPS is higher
info.sumDps = sumDps * 1.5f;
info.sumDps = sumDps * 1.2f;
info.sumRps = sumRps;
info.wavesSurvived = getWavesSurvived(info);