mirror of
https://github.com/EQEmu/Server.git
synced 2026-03-23 14:52:26 +00:00
out of bound (#2723)
This commit is contained in:
parent
46fa2e589e
commit
2587a7fed5
@ -1932,7 +1932,7 @@ void Mob::ApplySpellsBonuses(uint16 spell_id, uint8 casterlevel, StatBonuses *ne
|
|||||||
effect_value = se_base;
|
effect_value = se_base;
|
||||||
limit_value = se_limit;
|
limit_value = se_limit;
|
||||||
max_value = se_max;
|
max_value = se_max;
|
||||||
i = EFFECT_COUNT; //End the loop
|
i = (EFFECT_COUNT - 1); // AISpellEffects do a single pass
|
||||||
}
|
}
|
||||||
|
|
||||||
switch (spell_effect_id)
|
switch (spell_effect_id)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user