From 02cc47b88fa37817b21ef21004790203da90a433 Mon Sep 17 00:00:00 2001 From: pg9182 <96569817+pg9182@users.noreply.github.com> Date: Fri, 13 Jan 2023 13:56:09 -0500 Subject: pkg/nstypes: Add Frontier War --- pkg/nstypes/playlists.go | 4 ++++ 1 file changed, 4 insertions(+) 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": -- cgit v1.2.3