From c7bc35975278cc84e8e6b7293e53df0de0bc45df Mon Sep 17 00:00:00 2001 From: Fuzz Date: Wed, 26 Jun 2024 17:10:24 +1000 Subject: [PATCH] [Typo] Fixed inconsistent name for the co adds strategy - added with co +ads removed with co -adds (ads verses adDs), now uses adds name for both. Fortunately this isn't referred to by 'ads' anywhere else (not in AiFactory.cpp and dont think its used by UnBot addon either) --- src/strategy/StrategyContext.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/strategy/StrategyContext.h b/src/strategy/StrategyContext.h index 53c3f699..55bdc4bc 100644 --- a/src/strategy/StrategyContext.h +++ b/src/strategy/StrategyContext.h @@ -87,7 +87,7 @@ class StrategyContext : public NamedObjectContext creators["map full"] = &StrategyContext::map_full; creators["sit"] = &StrategyContext::sit; creators["mark rti"] = &StrategyContext::mark_rti; - creators["ads"] = &StrategyContext::possible_adds; + creators["adds"] = &StrategyContext::possible_adds; creators["close"] = &StrategyContext::close; creators["ranged"] = &StrategyContext::ranged; creators["behind"] = &StrategyContext::behind;