Add wrapped_constrictor game mode and support for map tags (#102)
* add support for wrapped_constrictor game mode * add tags to map metadata
This commit is contained in:
parent
ffeb401377
commit
b1ddd2f4ca
14 changed files with 46 additions and 5 deletions
11
constants.go
11
constants.go
|
|
@ -39,11 +39,12 @@ const (
|
|||
ErrorMapNotFound = RulesetError("map not found")
|
||||
|
||||
// Ruleset / game type names
|
||||
GameTypeConstrictor = "constrictor"
|
||||
GameTypeRoyale = "royale"
|
||||
GameTypeSolo = "solo"
|
||||
GameTypeStandard = "standard"
|
||||
GameTypeWrapped = "wrapped"
|
||||
GameTypeConstrictor = "constrictor"
|
||||
GameTypeRoyale = "royale"
|
||||
GameTypeSolo = "solo"
|
||||
GameTypeStandard = "standard"
|
||||
GameTypeWrapped = "wrapped"
|
||||
GameTypeWrappedConstrictor = "wrapped_constrictor"
|
||||
|
||||
// Game creation parameter names
|
||||
ParamGameType = "name"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue