Skip to content

Commit

Permalink
Add Anubis (#629)
Browse files Browse the repository at this point in the history
Missing slug, not sure where to find that?
  • Loading branch information
dbalders authored Feb 4, 2023
1 parent 40256db commit 17b7b04
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/shared/GameMap.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ export enum GameMap {
Vertigo = 'de_vertigo',
Season = 'de_season',
Ancient = 'de_ancient',
Anubis = 'de_anubis',
Default = 'default'
}

Expand Down Expand Up @@ -79,6 +80,8 @@ export const fromMapName = (name: string): GameMap => {
return GameMap.Vertigo
case 'Ancient':
return GameMap.Ancient
case 'Anubis':
return GameMap.Anubis
case 'Default':
return GameMap.Default
default:
Expand Down Expand Up @@ -110,6 +113,8 @@ export const toMapFilter = (map: GameMap): string => {
return 'de_vertigo'
case GameMap.Ancient:
return 'de_ancient'
case GameMap.Anubis:
return 'de_anubis'
case GameMap.Season:
return 'de_season'
case GameMap.TBA:
Expand Down

0 comments on commit 17b7b04

Please sign in to comment.