From 90fe8a31d751338ae0f2de489c0a8606babd34ae Mon Sep 17 00:00:00 2001 From: nytmyr <53322305+nytmyr@users.noreply.github.com> Date: Thu, 12 Dec 2024 08:00:12 -0600 Subject: [PATCH] Add missing alert round for ranged attacks --- zone/bot.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/zone/bot.cpp b/zone/bot.cpp index d685a41f2..ad5aa206b 100644 --- a/zone/bot.cpp +++ b/zone/bot.cpp @@ -1839,7 +1839,8 @@ bool Bot::BotRangedAttack(Mob* other, bool CanDoubleAttack) { ) { if (!Ammo || ammoItem->GetCharges() < 1) { if (!GetCombatRoundForAlerts()) { - GetOwner()->Message(Chat::Yellow, "I do not have enough any ammo."); + SetCombatRoundForAlerts(); + BotGroupSay(this, "I do not have enough any ammo!"); } }