forked from mirror/openmw-tes3mp
Add constraint: Bloodmoon.esm requires Tribunal.esm.
This commit is contained in:
parent
6dc202cba3
commit
63af9d848a
1 changed files with 8 additions and 0 deletions
|
@ -467,6 +467,14 @@ void ContentSelectorModel::ContentModel::addFiles(const QString &path)
|
|||
file->setFilePath (info.absoluteFilePath());
|
||||
file->setDescription(QString::fromUtf8(fileReader.getDesc().c_str()));
|
||||
|
||||
// HACK
|
||||
// Bloodmoon.esm requires Tribunal.esm, but this requirement is missing
|
||||
// from the file supplied by Bethesda, so we have to add it ourselves
|
||||
if (file->fileName().compare("Bloodmoon.esm", Qt::CaseInsensitive) == 0)
|
||||
{
|
||||
file->addGameFile(QString::fromUtf8("Tribunal.esm"));
|
||||
}
|
||||
|
||||
// Put the file in the table
|
||||
addFile(file);
|
||||
|
||||
|
|
Loading…
Reference in a new issue