1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-03-24 04:43:49 +00:00

fixed for compiler not recognising script names in some situations

This commit is contained in:
Marc Zinnschlag 2015-10-08 14:01:29 +02:00
parent b911abd7d8
commit 2f808f957d

View File

@ -83,7 +83,8 @@ namespace MWScript
store.get<ESM::Probe>().search (name) ||
store.get<ESM::Repair>().search (name) ||
store.get<ESM::Static>().search (name) ||
store.get<ESM::Weapon>().search (name);
store.get<ESM::Weapon>().search (name) ||
store.get<ESM::Script>().search (name);
}
bool CompilerContext::isJournalId (const std::string& name) const