diff --git a/zone/mob_ai.cpp b/zone/mob_ai.cpp index 5ae4a7369..384f09932 100644 --- a/zone/mob_ai.cpp +++ b/zone/mob_ai.cpp @@ -2663,8 +2663,8 @@ void NPC::AISpellsList(Client *c) return; for (auto it = AIspells.begin(); it != AIspells.end(); ++it) - c->Message(0, "%s (%d): Type %d, Priority %d", - spells[it->spellid].name, it->spellid, it->type, it->priority); + c->Message(0, "%s (%d): Type %d, Priority %d, Recast Delay %d, Resist Adjust %d, Min HP %d, Max HP %d", + spells[it->spellid].name, it->spellid, it->type, it->priority, it->recast_delay, it->resist_adjust, it->min_hp, it->max_hp); return; }