From 45ebef049ffce852a71a74e35ca1ce7a4a80dc32 Mon Sep 17 00:00:00 2001 From: Fuzz Date: Tue, 6 Aug 2024 22:21:55 +1000 Subject: [PATCH] [Battlegrounds] wsg pathing fix for #442 --- src/strategy/actions/BattleGroundTactics.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/strategy/actions/BattleGroundTactics.cpp b/src/strategy/actions/BattleGroundTactics.cpp index 7b28a19d..4b15eeee 100644 --- a/src/strategy/actions/BattleGroundTactics.cpp +++ b/src/strategy/actions/BattleGroundTactics.cpp @@ -2053,13 +2053,13 @@ bool BGTactics::wsgPaths() return true; } - if (bot->GetPositionX() > 1071.f) // move the ramp up a piece + if (bot->GetPositionX() > 1059.f) // move the ramp up a piece { - MoveTo(bg->GetMapId(), 1070.089478f, 1538.054443f, 332.460388f); + MoveTo(bg->GetMapId(), 1057.551f, 1546.271f, 326.864f); return true; } - if (bot->GetPositionX() > 1050.2f) // move the ramp up a piece + if (bot->GetPositionX() > 1051.2f) // move the ramp up a piece { MoveTo(bg->GetMapId(), 1050.089478f, 1538.054443f, 332.460388f); return true;