From 83777975238e8c484f7a934a5990cb606ee538d6 Mon Sep 17 00:00:00 2001 From: nytmyr <53322305+nytmyr@users.noreply.github.com> Date: Tue, 17 Dec 2024 15:15:11 -0600 Subject: [PATCH] missing ) --- zone/bot_commands/blocked_buffs.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zone/bot_commands/blocked_buffs.cpp b/zone/bot_commands/blocked_buffs.cpp index 0b029ba58..69a1aa13a 100644 --- a/zone/bot_commands/blocked_buffs.cpp +++ b/zone/bot_commands/blocked_buffs.cpp @@ -368,7 +368,7 @@ void bot_command_blocked_pet_buffs(Client* c, const Seperator* sep) uint16 spell_id; if (!arg1.compare("add")) { - if (!sep->IsNumber(2) || !IsValidSpell(atoi(sep->arg[2])) || !IsBeneficialSpell(atoi(sep->arg[2])) { + if (!sep->IsNumber(2) || !IsValidSpell(atoi(sep->arg[2])) || !IsBeneficialSpell(atoi(sep->arg[2]))) { c->Message(Chat::Yellow, "You must enter a valid spell ID."); return; }