Fix wrong PlayerbotAI parameter name passed to the constructor (#1672)

This commit is contained in:
privatecore
2025-09-28 13:42:03 +02:00
committed by GitHub
parent c20fb34470
commit 30bd58be67
3 changed files with 4 additions and 4 deletions

View File

@@ -20,7 +20,7 @@ public:
class AutoShareQuestAction : public ShareQuestAction
{
public:
AutoShareQuestAction(PlayerbotAI* ai) : ShareQuestAction(botAI, "auto share quest") {}
AutoShareQuestAction(PlayerbotAI* botAI) : ShareQuestAction(botAI, "auto share quest") {}
bool Execute(Event event) override;
bool isUseful() override;