Added boss as radar target

This commit is contained in:
LeoDog896
2020-09-24 10:59:13 -04:00
parent db94acdb83
commit e23e8de62a

View File

@ -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;