From ef0ff104cf3b5bf76e76775c0bb80749c51d71d3 Mon Sep 17 00:00:00 2001 From: nytmyr <53322305+nytmyr@users.noreply.github.com> Date: Mon, 27 Jan 2025 19:46:54 -0600 Subject: [PATCH] Rename _assistee to bot_assistee --- zone/client.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/zone/client.h b/zone/client.h index d7a6a29f4..480e44624 100644 --- a/zone/client.h +++ b/zone/client.h @@ -2260,8 +2260,8 @@ public: bool GetBotPulling() { return m_bot_pulling; } void SetBotPulling(bool flag = true) { m_bot_pulling = flag; } - uint32 GetAssistee() { return _assistee; } - void SetAssistee(uint32 id = 0) { _assistee = id; } + uint32 GetAssistee() { return bot_assistee; } + void SetAssistee(uint32 id = 0) { bot_assistee = id; } bool GetBotPrecombat() { return m_bot_precombat; } void SetBotPrecombat(bool flag = true) { m_bot_precombat = flag; } @@ -2286,7 +2286,7 @@ private: bool m_bot_pulling; bool m_bot_precombat; - uint32 _assistee; + uint32 bot_assistee; bool CanTradeFVNoDropItem(); void SendMobPositions();