mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-07-14 09:47:24 +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),
|
ally((team, other) -> team == other.team),
|
||||||
player((team, other) -> other.isPlayer()),
|
player((team, other) -> other.isPlayer()),
|
||||||
flying((team, other) -> other.isFlying()),
|
flying((team, other) -> other.isFlying()),
|
||||||
|
boss((team, other) -> other.isBoss()),
|
||||||
ground((team, other) -> other.isGrounded());
|
ground((team, other) -> other.isGrounded());
|
||||||
|
|
||||||
public final RadarTargetFunc func;
|
public final RadarTargetFunc func;
|
||||||
|
Reference in New Issue
Block a user