More sort and target options

This commit is contained in:
LeoDog896
2020-09-25 07:58:44 -04:00
parent 7b90f5a97d
commit 6492ffd35d
2 changed files with 4 additions and 1 deletions
@@ -8,6 +8,7 @@ public enum RadarTarget{
enemy((team, other) -> team != other.team),
ally((team, other) -> team == other.team),
player((team, other) -> other.isPlayer()),
attacker((pos, other) -> other.canShoot()),
flying((team, other) -> other.isFlying()),
boss((team, other) -> other.isBoss()),
ground((team, other) -> other.isGrounded());