add ranged preset

This commit is contained in:
Ean Milligan 2024-09-17 17:55:49 -04:00
parent 2b6b86c8cc
commit 0eb0db0514
3 changed files with 3 additions and 2 deletions

View File

@ -1,4 +1,4 @@
# Logogram Discord Bot - A FFXIV Eureka Utility Bot | V1.1.4 - 2025/09/14
# Logogram Discord Bot - A FFXIV Eureka Utility Bot | V1.1.5 - 2025/09/17
A Discord bot for Eureka Logos Actions and their recipes.
## Commands

View File

@ -1,6 +1,6 @@
export const config = {
'name': 'Logogram Bot', // Name of the bot
'version': '1.1.4', // Version of the bot
'version': '1.1.5', // Version of the bot
'token': 'the_bot_token', // Discord API Token for this bot
'localToken': 'local_testing_token', // Discord API Token for a secondary OPTIONAL testing bot, THIS MUST BE DIFFERENT FROM "token"
'prefix': 'l!', // Prefix for all commands

View File

@ -811,6 +811,7 @@ const ActionShortNames = Actions.map((action) => action.shorthand);
const Presets: Map<string, Array<number>> = new Map([
['dps', [9, 10, 52, 14, 48]],
['pl', [50, 13, 44, 39]],
['ranged', [9, 10, 8, 14, 49]]
]);
export default {