1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-29 21:45:32 +00:00

Make MODL subrecord optional for potions (Fixes #1419)

This commit is contained in:
scrawl 2014-06-08 01:42:43 +02:00
parent b9dadff5a3
commit 98d7b6672a

View file

@ -10,7 +10,7 @@ namespace ESM
void Potion::load(ESMReader &esm)
{
mModel = esm.getHNString("MODL");
mModel = esm.getHNOString("MODL");
mIcon = esm.getHNOString("TEXT"); // not ITEX here for some reason
mScript = esm.getHNOString("SCRI");
mName = esm.getHNOString("FNAM");