More alignment fixes

This commit is contained in:
nytmyr
2025-01-23 12:27:06 -06:00
parent fa69e4ac1a
commit 3ac3861007
2 changed files with 32 additions and 32 deletions
+21 -21
View File
@@ -48,12 +48,12 @@ extern WorldServer worldserver;
constexpr int NegativeItemReuse = -1; // Unlinked timer for items constexpr int NegativeItemReuse = -1; // Unlinked timer for items
constexpr uint8 SumWater = 1; constexpr uint8 SumWater = 1;
constexpr uint8 SumFire = 2; constexpr uint8 SumFire = 2;
constexpr uint8 SumAir = 3; constexpr uint8 SumAir = 3;
constexpr uint8 SumEarth = 4; constexpr uint8 SumEarth = 4;
constexpr uint8 MonsterSum = 5; constexpr uint8 MonsterSum = 5;
constexpr uint8 SumMageMultiElement = 6; constexpr uint8 SumMageMultiElement = 6;
// nHSND negative Healer/Slower/Nuker/Doter // nHSND negative Healer/Slower/Nuker/Doter
// pH positive Healer // pH positive Healer
@@ -119,21 +119,21 @@ namespace BotSettingCategories { // Update GetBotSpellCategoryName as needed
}; };
static std::map<uint8, std::string> botSpellCategory_names = { static std::map<uint8, std::string> botSpellCategory_names = {
{ BotSettingCategories::BaseSetting, "BaseSetting" }, { BotSettingCategories::BaseSetting, "BaseSetting" },
{ BotSettingCategories::SpellHold, "SpellHolds" }, { BotSettingCategories::SpellHold, "SpellHolds" },
{ BotSettingCategories::SpellDelay, "SpellDelays" }, { BotSettingCategories::SpellDelay, "SpellDelays" },
{ BotSettingCategories::SpellMinThreshold, "SpellMinThresholds" }, { BotSettingCategories::SpellMinThreshold, "SpellMinThresholds" },
{ BotSettingCategories::SpellMaxThreshold, "SpellMaxThresholds" }, { BotSettingCategories::SpellMaxThreshold, "SpellMaxThresholds" },
{ BotSettingCategories::SpellTypeAggroCheck, "SpellAggroChecks" }, { BotSettingCategories::SpellTypeAggroCheck, "SpellAggroChecks" },
{ BotSettingCategories::SpellTypeMinManaPct, "SpellMinManaPct" }, { BotSettingCategories::SpellTypeMinManaPct, "SpellMinManaPct" },
{ BotSettingCategories::SpellTypeMaxManaPct, "SpellMaxManaPct" }, { BotSettingCategories::SpellTypeMaxManaPct, "SpellMaxManaPct" },
{ BotSettingCategories::SpellTypeMinHPPct, "SpellMinHPPct" }, { BotSettingCategories::SpellTypeMinHPPct, "SpellMinHPPct" },
{ BotSettingCategories::SpellTypeMaxHPPct, "SpellMaxHPPct" }, { BotSettingCategories::SpellTypeMaxHPPct, "SpellMaxHPPct" },
{ BotSettingCategories::SpellTypeIdlePriority, "SpellIdlePriority" }, { BotSettingCategories::SpellTypeIdlePriority, "SpellIdlePriority" },
{ BotSettingCategories::SpellTypeEngagedPriority, "SpellEngagedPriority" }, { BotSettingCategories::SpellTypeEngagedPriority, "SpellEngagedPriority" },
{ BotSettingCategories::SpellTypePursuePriority, "SpellPursuePriority" }, { BotSettingCategories::SpellTypePursuePriority, "SpellPursuePriority" },
{ BotSettingCategories::SpellTypeAEOrGroupTargetCount, "SpellTargetCounts" }, { BotSettingCategories::SpellTypeAEOrGroupTargetCount, "SpellTargetCounts" },
{ BotSettingCategories::SpellTypeRecastDelay, "SpellRecastDelay" } { BotSettingCategories::SpellTypeRecastDelay, "SpellRecastDelay" }
}; };
namespace BotPriorityCategories { // Update GetBotSpellCategoryName as needed namespace BotPriorityCategories { // Update GetBotSpellCategoryName as needed
+11 -11
View File
@@ -198,17 +198,17 @@ struct RespawnOption
}; };
struct BotCommandHelpParams { struct BotCommandHelpParams {
std::vector<std::string> description = {}; std::vector<std::string> description = {};
std::vector<std::string> notes = {}; std::vector<std::string> notes = {};
std::vector<std::string> example_format = {}; std::vector<std::string> example_format = {};
std::vector<std::string> examples_one = {}; std::vector<std::string> examples_one = {};
std::vector<std::string> examples_two = {}; std::vector<std::string> examples_two = {};
std::vector<std::string> examples_three = {}; std::vector<std::string> examples_three = {};
std::vector<std::string> actionables = {}; std::vector<std::string> actionables = {};
std::vector<std::string> options = {}; std::vector<std::string> options = {};
std::vector<std::string> options_one = {}; std::vector<std::string> options_one = {};
std::vector<std::string> options_two = {}; std::vector<std::string> options_two = {};
std::vector<std::string> options_three = {}; std::vector<std::string> options_three = {};
}; };
// do not ask what all these mean because I have no idea! // do not ask what all these mean because I have no idea!