Skip to content

Commit

Permalink
v200
Browse files Browse the repository at this point in the history
  • Loading branch information
FJrodafo committed Jan 31, 2025
1 parent 3df7897 commit 5ff631a
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 7 deletions.
4 changes: 2 additions & 2 deletions App/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@

# secrets
/canary/config.json
/shrike/config.json
/shrikebot/config.json
/src/config.json
.env

# misc
/deprecated
/shrike
/shrikebot
2 changes: 1 addition & 1 deletion App/canary/commands/utility/dauntless.js
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ module.exports = {
}
else if (subcommand === 'gauntlet') {
const season = interaction.options.getInteger('season');
if (season < 1 || season > 17) return interaction.reply({ content: 'You need to input a number between `1` and `17`', ephemeral: true });
if (season < 1 || season > 18) return interaction.reply({ content: 'You need to input a number between `1` and `18`', ephemeral: true });
const jsonPath = `./../../database/dauntless/gauntlet/season${season}.json`;
const leaderboardData = require(jsonPath);
await handleGauntletPagination(interaction, leaderboardData.leaderboard);
Expand Down
4 changes: 2 additions & 2 deletions App/canary/database/dauntless/gauntlet/season18.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"last_updated": "2025-01-30T17:00:05Z",
"end_at": "2025-01-30T18:00:00Z",
"start": "2024-12-03",
"end": "2025-01-30",
"leaderboard": [
{
"guild_name": "SHlELDS",
Expand Down
2 changes: 1 addition & 1 deletion App/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"scripts": {
"start": "node ./src/deploy-commands.js && node ./src/index.js",
"canary": "node ./canary/deploy-commands.js && node ./canary/index.js",
"shrike": "node ./shrike/deploy-commands.js && node ./shrike/index.js",
"shrikebot": "node ./shrikebot/deploy-commands.js && node ./shrikebot/index.js",
"eslint": "eslint './**/*.js'",
"eslintfix": "eslint './**/*.js' --fix",
"test": "echo \"Error: no test specified\" && exit 1"
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
```
* Commit: 3df7897 - v199
| Author: fjrodafo - Thu, 30 Jan 2025 18:49:55 +0000
|
* Commit: ae2a305 - v198
| Author: fjrodafo - Wed, 29 Jan 2025 21:43:49 +0000
|
Expand Down
2 changes: 1 addition & 1 deletion VERSION.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
`v199`
`v200`

0 comments on commit 5ff631a

Please sign in to comment.