From d87d5a46c7d157ba8ced45792dc3a7bf6f997342 Mon Sep 17 00:00:00 2001 From: Brian Date: Sat, 24 May 2025 11:11:34 +0200 Subject: [PATCH] Typo fix in AcceptBgInvitationAction (#1332) --- src/strategy/actions/AcceptBattlegroundInvitationAction.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/strategy/actions/AcceptBattlegroundInvitationAction.h b/src/strategy/actions/AcceptBattlegroundInvitationAction.h index 3552957b..da9662fe 100644 --- a/src/strategy/actions/AcceptBattlegroundInvitationAction.h +++ b/src/strategy/actions/AcceptBattlegroundInvitationAction.h @@ -13,7 +13,7 @@ class PlayerbotAI; class AcceptBgInvitationAction : public Action { public: - AcceptBgInvitationAction(PlayerbotAI* botAI) : Action(botAI, "accept bg invitatio") {} + AcceptBgInvitationAction(PlayerbotAI* botAI) : Action(botAI, "accept bg invitation") {} bool Execute(Event event) override; };