Skip to content

Commit

Permalink
feat: add seasons commands (#99)
Browse files Browse the repository at this point in the history
* feat: add seasons command

* feat: add seasons command
  • Loading branch information
HenrySpartGlobal authored May 30, 2024
1 parent 200a6b6 commit f198b8d
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 5 deletions.
5 changes: 0 additions & 5 deletions .vscode/settings.json

This file was deleted.

55 changes: 55 additions & 0 deletions src/data/commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -597,6 +597,61 @@ const commands = [
"/create_draft d3441a8c",
]
},
{
"name": "season_start",
"type": "Admin",
"description": "Start a new season in the server.",
"usage": [
"/season_start [days] [game] [channel] [season_name] [role]"
],
"examples": [
"/season_start 30 Valorant #announcements Spring_Split @season_role"
]
},
{
"name": "season_extend",
"type": "Admin",
"description": "Extend the current season.",
"usage": [
"/season_extend [game] [days]"
],
"examples": [
"/season_extend Valorant 10"
]
},
{
"name": "season_shorten",
"type": "Admin",
"description": "Shorten the current season.",
"usage": [
"/season_shorten [game] [days]"
],
"examples": [
"/season_shorten Overwatch 5"
]
},
{
"name": "season_end",
"type": "Admin",
"description": "End the current season early.",
"usage": [
"/season_end [game]"
],
"examples": [
"/season_end League Of Legends"
]
},
{
"name": "season_stats",
"type": "Admin",
"description": "View the current season stats.",
"usage": [
"/season_stats [game]"
],
"examples": [
"/season_stats Custom"
]
},

// ~ Set-up
{
Expand Down

0 comments on commit f198b8d

Please sign in to comment.