From 1bba629514d6398fcd025f78ac5edbd2764dbedc Mon Sep 17 00:00:00 2001 From: Trust Date: Sun, 22 Jul 2018 18:35:50 -0400 Subject: [PATCH] Prevent Low Level Charm testing without Aggro --- zone/spells.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/zone/spells.cpp b/zone/spells.cpp index a0b149a8d..60591b7b1 100644 --- a/zone/spells.cpp +++ b/zone/spells.cpp @@ -4339,6 +4339,7 @@ bool Mob::IsImmuneToSpell(uint16 spell_id, Mob *caster) { Log(Logs::Detail, Logs::Spells, "Our level (%d) is higher than the limit of this Charm spell (%d)", GetLevel(), spells[spell_id].max[effect_index]); caster->Message_StringID(MT_Shout, CANNOT_CHARM_YET); + AddToHateList(caster, 1,0,true,false,false,spell_id); return true; } }