Second map fixes

This commit is contained in:
Anuken
2022-04-11 15:35:02 -04:00
parent e2abc055a2
commit 123e62d275
5 changed files with 9 additions and 6 deletions

View File

@@ -3,10 +3,14 @@ package mindustry.entities;
/** Higher priority blocks will always get targeted over those of lower priority, regardless of distance. */
public class TargetPriority{
public static final float
//nobody cares about walls
wall = -2f,
//transport infrastructure isn't as important as factories
transport = -1f,
//most blocks
base = 0f,
constructing = 1f,
turret = 2f,
core = 3f;
//turrets deal damage so they are more important
turret = 1f,
//core is always the most important thing to destroy
core = 2f;
}