From 0eb0db05145c89cec4494900fdb41053896c99e3 Mon Sep 17 00:00:00 2001 From: Ean Milligan Date: Tue, 17 Sep 2024 17:55:49 -0400 Subject: [PATCH] add ranged preset --- README.md | 2 +- config.example.ts | 2 +- src/data.ts | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 103ec52..5a9dfcb 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/config.example.ts b/config.example.ts index 84345eb..11f996f 100755 --- a/config.example.ts +++ b/config.example.ts @@ -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 diff --git a/src/data.ts b/src/data.ts index bfd601d..d46f666 100644 --- a/src/data.ts +++ b/src/data.ts @@ -811,6 +811,7 @@ const ActionShortNames = Actions.map((action) => action.shorthand); const Presets: Map> = new Map([ ['dps', [9, 10, 52, 14, 48]], ['pl', [50, 13, 44, 39]], + ['ranged', [9, 10, 8, 14, 49]] ]); export default {