mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-07-14 01:37:36 +07:00
Added boss as radar target
This commit is contained in:
@ -9,6 +9,7 @@ public enum RadarTarget{
|
||||
ally((team, other) -> team == other.team),
|
||||
player((team, other) -> other.isPlayer()),
|
||||
flying((team, other) -> other.isFlying()),
|
||||
boss((team, other) -> other.isBoss()),
|
||||
ground((team, other) -> other.isGrounded());
|
||||
|
||||
public final RadarTargetFunc func;
|
||||
|
Reference in New Issue
Block a user