mirror of
https://github.com/OpenMW/openmw.git
synced 2025-02-05 13:45:35 +00:00
don't show diseases and curses in the spell list
This commit is contained in:
parent
447158e9d6
commit
584ae30213
1 changed files with 4 additions and 2 deletions
|
@ -144,9 +144,11 @@ namespace MWGui
|
||||||
powers.push_back(*it);
|
powers.push_back(*it);
|
||||||
it = spellList.erase(it);
|
it = spellList.erase(it);
|
||||||
}
|
}
|
||||||
else if (spell->data.type == ESM::Spell::ST_Ability)
|
else if (spell->data.type == ESM::Spell::ST_Ability
|
||||||
|
|| spell->data.type == ESM::Spell::ST_Blight
|
||||||
|
|| spell->data.type == ESM::Spell::ST_Curse
|
||||||
|
|| spell->data.type == ESM::Spell::ST_Disease)
|
||||||
{
|
{
|
||||||
// abilities are always active and don't show in the spell window.
|
|
||||||
it = spellList.erase(it);
|
it = spellList.erase(it);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue