Skip to content

Commit

Permalink
feat(*): add bball config (#1162)
Browse files Browse the repository at this point in the history
  • Loading branch information
garrappachc authored Aug 12, 2021
1 parent 7382df3 commit 1e6de8f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions configs/queue/bball.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"teamCount": 2,
"classes": [
{
"name": "soldier",
"count": 2
}
]
}
2 changes: 1 addition & 1 deletion src/environment-validation-schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export default object({
SUPER_USER: string()
.required()
.pattern(/^\d{17}$/, { name: 'SteamID64' }),
QUEUE_CONFIG: string().valid('test', '6v6', '9v9').default('6v6'),
QUEUE_CONFIG: string().valid('test', '6v6', '9v9', 'bball').default('6v6'),
LOG_RELAY_ADDRESS: string().required(),
LOG_RELAY_PORT: number().required(),
DISCORD_BOT_TOKEN: any().optional(),
Expand Down

0 comments on commit 1e6de8f

Please sign in to comment.