Allow "bo" and "neutral" as valid factions for /capturebase

This commit is contained in:
Mazo 2021-01-24 20:52:45 +00:00
parent 38a67d0388
commit efe0c293a3

View file

@ -406,6 +406,8 @@ class ChatActor(
case ("nc", pos) => Some(PlanetSideEmpire.NC, pos)
case ("vs", pos) => Some(PlanetSideEmpire.VS, pos)
case ("none", pos) => Some(PlanetSideEmpire.NEUTRAL, pos)
case ("bo", pos) => Some(PlanetSideEmpire.NEUTRAL, pos)
case ("neutral", pos) => Some(PlanetSideEmpire.NEUTRAL, pos)
case _ => None
}
.headOption match {