1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-26 09:35:28 +00:00

Don't allow selling gold (again - when did this get broken?)

This commit is contained in:
scrawl 2013-11-23 22:52:20 +01:00
parent 4aa9f3bcef
commit 07408a4652

View File

@ -241,7 +241,8 @@ namespace MWClass
MWWorld::LiveCellRef<ESM::Miscellaneous> *ref =
item.get<ESM::Miscellaneous>();
return !ref->mBase->mData.mIsKey && (npcServices & ESM::NPC::Misc);
return !ref->mBase->mData.mIsKey && (npcServices & ESM::NPC::Misc)
&& !Misc::StringUtils::ciEqual(item.getCellRef().mRefID, "gold_001");
}
float Miscellaneous::getWeight(const MWWorld::Ptr &ptr) const