From 2fdc4e86676b4ebf940137650ba87ebf25c8f821 Mon Sep 17 00:00:00 2001 From: nytmyr <53322305+nytmyr@users.noreply.github.com> Date: Fri, 31 Jan 2025 18:57:04 -0600 Subject: [PATCH] Make all spell shortnames plural where applicable --- common/spdat.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/common/spdat.h b/common/spdat.h index b60ab5186..437910fa4 100644 --- a/common/spdat.h +++ b/common/spdat.h @@ -835,8 +835,8 @@ static std::map spellType_shortNames = { { BotSpellTypes::Debuff, "debuffs" }, { BotSpellTypes::Cure, "cures" }, { BotSpellTypes::GroupCures, "groupcures" }, - { BotSpellTypes::PetCures, "petcure" }, - { BotSpellTypes::Resurrect, "resurrect" }, + { BotSpellTypes::PetCures, "petcures" }, + { BotSpellTypes::Resurrect, "resurrects" }, { BotSpellTypes::HateRedux, "hateredux" }, { BotSpellTypes::InCombatBuffSong, "incombatbuffsongs" }, { BotSpellTypes::OutOfCombatBuffSong, "outofcombatbuffsongs" }, @@ -874,8 +874,8 @@ static std::map spellType_shortNames = { { BotSpellTypes::ResistBuffs, "resistbuffs" }, { BotSpellTypes::PetDamageShields, "petdamageshields" }, { BotSpellTypes::PetResistBuffs, "petresistbuffs" }, - { BotSpellTypes::HateLine, "hateline" }, - { BotSpellTypes::AEHateLine, "aehateline" }, + { BotSpellTypes::HateLine, "hatelines" }, + { BotSpellTypes::AEHateLine, "aehatelines" }, { BotSpellTypes::Lull, "lull" }, { BotSpellTypes::Teleport, "teleport" }, { BotSpellTypes::Succor, "succor" },