Summon improvement: Selfbot no longer complains about being unable to… (#1166)

* Summon improvement: Selfbot no longer complains about being unable to summon to itself.

* Fix build

* .
This commit is contained in:
EricksOliveira
2025-04-04 10:56:22 -03:00
committed by GitHub
parent dccbccc090
commit 7446d0b1d4

View File

@@ -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; return false;
} }