diff options
author | pg9182 <96569817+pg9182@users.noreply.github.com> | 2023-01-13 13:56:09 -0500 |
---|---|---|
committer | pg9182 <96569817+pg9182@users.noreply.github.com> | 2023-01-13 14:06:01 -0500 |
commit | 02cc47b88fa37817b21ef21004790203da90a433 (patch) | |
tree | 3a600a75b16ac5ef93a2b77546a0469746e33ab6 | |
parent | 652628e3caffb1c065e8f54ec2052f7777f107e8 (diff) | |
download | Atlas-02cc47b88fa37817b21ef21004790203da90a433.tar.gz Atlas-02cc47b88fa37817b21ef21004790203da90a433.zip |
pkg/nstypes: Add Frontier War
-rw-r--r-- | pkg/nstypes/playlists.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/pkg/nstypes/playlists.go b/pkg/nstypes/playlists.go index 5d8c90d..82c0500 100644 --- a/pkg/nstypes/playlists.go +++ b/pkg/nstypes/playlists.go @@ -39,6 +39,7 @@ const ( OneInTheChamber Playlist = "chamber" CompetitiveCTF Playlist = "ctf_comp" Fastball Playlist = "fastball" + FrontierWar Playlist = "fw" GunGame Playlist = "gg" TheHidden Playlist = "hidden" HideAndSeek Playlist = "hs" @@ -84,6 +85,7 @@ func Playlists() []Playlist { OneInTheChamber, CompetitiveCTF, Fastball, + FrontierWar, GunGame, TheHidden, HideAndSeek, @@ -181,6 +183,8 @@ func (p Playlist) Title() (string, bool) { return "Competitive CTF", true case "fastball": return "Fastball", true + case "fw": + return "Frontier War", true case "gg": return "Gun Game", true case "hidden": |