mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 19:19:56 +00:00
Merge pull request #1096 from Allofich/magic
Don't let Weakness to Magicka affect paralysis
This commit is contained in:
commit
48f299532c
1 changed files with 1 additions and 2 deletions
|
@ -356,8 +356,7 @@ short MagicEffect::getWeaknessEffect(short effect)
|
|||
effects[Corprus] = WeaknessToCorprusDisease;
|
||||
effects[Poison] = WeaknessToPoison;
|
||||
|
||||
// Weakness to magicka or -1 ?
|
||||
effects[Paralyze] = WeaknessToMagicka;
|
||||
effects[Paralyze] = -1;
|
||||
|
||||
if (effects.find(effect) != effects.end())
|
||||
return effects[effect];
|
||||
|
|
Loading…
Reference in a new issue