From 7446d0b1d4c503904979db9f23d7030ffe6f78e8 Mon Sep 17 00:00:00 2001 From: EricksOliveira Date: Fri, 4 Apr 2025 10:56:22 -0300 Subject: [PATCH] =?UTF-8?q?Summon=20improvement:=20Selfbot=20no=20longer?= =?UTF-8?q?=20complains=20about=20being=20unable=20to=E2=80=A6=20(#1166)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Summon improvement: Selfbot no longer complains about being unable to summon to itself. * Fix build * . --- src/strategy/actions/UseMeetingStoneAction.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/strategy/actions/UseMeetingStoneAction.cpp b/src/strategy/actions/UseMeetingStoneAction.cpp index 101fd7ec..7607dcdb 100644 --- a/src/strategy/actions/UseMeetingStoneAction.cpp +++ b/src/strategy/actions/UseMeetingStoneAction.cpp @@ -243,6 +243,7 @@ bool SummonAction::Teleport(Player* summoner, Player* player) } } - botAI->TellError("Not enough place to summon"); + if(summoner != player) + botAI->TellError("Not enough place to summon"); return false; }