From ec7132bc3e4e6371d30f89097e8f05c5b5a424e0 Mon Sep 17 00:00:00 2001 From: avirar Date: Thu, 3 Oct 2024 13:14:13 +1000 Subject: [PATCH] Update ChatActionContext.h Removed the s --- src/strategy/actions/ChatActionContext.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/strategy/actions/ChatActionContext.h b/src/strategy/actions/ChatActionContext.h index 2f700a52..254dc919 100644 --- a/src/strategy/actions/ChatActionContext.h +++ b/src/strategy/actions/ChatActionContext.h @@ -180,7 +180,7 @@ public: } private: - static Action* open_items(PlayerbotAI* botAI) { return new OpenItemsAction(botAI); } + static Action* open_items(PlayerbotAI* botAI) { return new OpenItemAction(botAI); } static Action* range(PlayerbotAI* botAI) { return new RangeAction(botAI); } static Action* flag(PlayerbotAI* botAI) { return new FlagAction(botAI); } static Action* craft(PlayerbotAI* botAI) { return new SetCraftAction(botAI); }