Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "apexstats",
"version": "1.14.96",
"version": "1.14.97",
"description": "A Discord bot to show off in-game content and information for Apex Legends.",
"main": "src/Shard.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/commands/map/ranked.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ module.exports = {
const mapEmbed = new EmbedBuilder()
.setTitle(`Ranked Squads are currently competing on ${mapData.map.name}`)
.setDescription(
`**${mapData.map.name}** ends <t:${mapData.times.nextMap}:R> at <t:${mapData.times.nextMap}:t>.\n**Next Up:** ${mapData.next[0].map.name} for 24 hours.\n**Ranked Period Split:** <t:${rankedSplit}:D> at <t:${rankedSplit}:t>, or <t:${rankedSplit}:R>.\n**Ranked Period End:** <t:${rankedEnd}:D> at <t:${rankedEnd}:t>, or <t:${rankedEnd}:R>.`,
`**${mapData.map.name}** ends <t:${mapData.times.nextMap}:R> at <t:${mapData.times.nextMap}:t>.\n**Next Up:** ${mapData.next[0].map.name} for 4 hours and 30 minutes.\n**Ranked Period Split:** <t:${rankedSplit}:D> at <t:${rankedSplit}:t>, or <t:${rankedSplit}:R>.\n**Ranked Period End:** <t:${rankedEnd}:D> at <t:${rankedEnd}:t>, or <t:${rankedEnd}:R>.`,
)
.setImage(`https://specter.apexstats.dev/ApexStats/Maps/${mapImage}.png?t=${Math.floor(Math.random() * 10) + 1}&key=${process.env.SPECTER}`);
interaction.editReply({ embeds: [mapEmbed] });
Expand Down
3 changes: 2 additions & 1 deletion src/data/legends/all.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,6 @@
"Ballistic",
"Conduit",
"Alter",
"Sparrow"
"Sparrow",
"Axle"
]
2 changes: 1 addition & 1 deletion src/data/legends/assault.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
["Revenant", "Ballistic", "Bangalore", "Fuse", "Mad Maggie"]
["Bangalore", "Revenant", "Fuse", "Mad Maggie", "Ballistic"]
2 changes: 1 addition & 1 deletion src/data/legends/controller.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
["Catalyst", "Caustic", "Rampart", "Wattson"]
["Caustic", "Wattson", "Rampart", "Catalyst"]
2 changes: 1 addition & 1 deletion src/data/legends/recon.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
["Bloodhound", "Crypto", "Seer", "Sparrow", "Valkyrie", "Vantage"]
["Bloodhound", "Crypto", "Valkyrie", "Seer", "Vantage", "Sparrow"]
2 changes: 1 addition & 1 deletion src/data/legends/skirmisher.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
["Alter", "Horizon", "Octane", "Pathfinder", "Ash", "Wraith"]
["Pathfinder", "Wraith", "Octane", "Horizon", "Ash", "Alter", "Axle"]
2 changes: 1 addition & 1 deletion src/data/legends/support.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
["Conduit", "Gibraltar", "Lifeline", "Loba", "Mirage", "Newcastle"]
["Gibraltar", "Lifeline", "Mirage", "Loba", "Newcastle", "Conduit"]
6 changes: 5 additions & 1 deletion src/data/utilities.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,11 @@
"Season_22": "<:ApexStats_Season22:1270101878188806165>",
"Season_23": "<:ApexStats_Season0:993334223354216459>",
"Season_24": "<:ApexStats_Season0:993334223354216459>",
"Season_25": "<:ApexStats_Season0:993334223354216459>"
"Season_25": "<:ApexStats_Season0:993334223354216459>",
"Season_26": "<:ApexStats_Season0:993334223354216459>",
"Season_27": "<:ApexStats_Season0:993334223354216459>",
"Season_28": "<:ApexStats_Season0:993334223354216459>",
"Season_29": "<:ApexStats_Season0:993334223354216459>"
},
"ServerStatus": {
"Online": "<:ApexStats_GreenDot:955008202116845568>",
Expand Down
Loading