From 91b8a43270027a9a74bb59c89fbaf5475b87d615 Mon Sep 17 00:00:00 2001 From: bash <31279994+hermensbas@users.noreply.github.com> Date: Sat, 18 Oct 2025 15:39:06 +0200 Subject: [PATCH] Added shaman default combat strategy names on top of custom --- src/strategy/shaman/ShamanAiObjectContext.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/strategy/shaman/ShamanAiObjectContext.cpp b/src/strategy/shaman/ShamanAiObjectContext.cpp index dc7145e7..08ee3638 100644 --- a/src/strategy/shaman/ShamanAiObjectContext.cpp +++ b/src/strategy/shaman/ShamanAiObjectContext.cpp @@ -41,6 +41,11 @@ class ShamanCombatStrategyFactoryInternal : public NamedObjectContext public: ShamanCombatStrategyFactoryInternal() : NamedObjectContext(false, true) { + creators["heal"] = &ShamanCombatStrategyFactoryInternal::resto; + creators["melee"] = &ShamanCombatStrategyFactoryInternal::enh; + creators["dps"] = &ShamanCombatStrategyFactoryInternal::enh; + creators["caster"] = &ShamanCombatStrategyFactoryInternal::ele; + //creators["offheal"] = &ShamanCombatStrategyFactoryInternal::offheal; creators["resto"] = &ShamanCombatStrategyFactoryInternal::resto; creators["enh"] = &ShamanCombatStrategyFactoryInternal::enh; creators["ele"] = &ShamanCombatStrategyFactoryInternal::ele;