mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-25 15:35:23 +00:00
Handle plugins that has 0x00 for levelled list types, for example Ravenloft v5.02d, to use 0x01.
This commit is contained in:
parent
f1c0847897
commit
7f2bd01f79
@ -2,6 +2,7 @@
|
||||
#define CSM_WOLRD_REFIDADAPTERIMP_H
|
||||
|
||||
#include <map>
|
||||
#include <iostream>
|
||||
|
||||
#include <QVariant>
|
||||
|
||||
@ -1895,6 +1896,20 @@ namespace CSMWorld
|
||||
{
|
||||
return QString("All Levels");
|
||||
}
|
||||
else if (mType == CSMWorld::UniversalId::Type_CreatureLevelledList &&
|
||||
record.get().mFlags == 0x00)
|
||||
{
|
||||
std::cerr << "Unknown creature leveled list type: " << record.get().mFlags
|
||||
<< ", Using \"All Levels\""<< std::endl;
|
||||
return QString("All Levels");
|
||||
}
|
||||
else if (mType == CSMWorld::UniversalId::Type_ItemLevelledList &&
|
||||
record.get().mFlags == 0x00)
|
||||
{
|
||||
std::cerr << "Unknown item leveled list type: " << record.get().mFlags
|
||||
<< ", Using \"Each\""<< std::endl;
|
||||
return QString("Each");
|
||||
}
|
||||
else
|
||||
throw std::runtime_error("unknown leveled list type");
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user