From 1aa71598a0ae265f9d9dae7ace4e04ca0f66cb7f 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 39ba17500..b7e41a25b 100644 --- a/zone/bot.cpp +++ b/zone/bot.cpp @@ -1841,7 +1841,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!"); } }