Merge pull request #2702 from LeoDog896/master

Added boss as radar target
This commit is contained in:
Anuken
2020-09-24 11:15:15 -04:00
committed by GitHub

View File

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