mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-02-04 03:40:14 +00:00
Moving back to boost for case insensitive comparsion.
This commit is contained in:
parent
e34cb9e931
commit
2c1ef610b9
@ -2,7 +2,6 @@
|
|||||||
#include "../world/record.hpp"
|
#include "../world/record.hpp"
|
||||||
#include "../world/universalid.hpp"
|
#include "../world/universalid.hpp"
|
||||||
#include <boost/algorithm/string.hpp>
|
#include <boost/algorithm/string.hpp>
|
||||||
#include "../../../../openmw/apps/openmw/mwclass/misc.hpp"
|
|
||||||
|
|
||||||
CSMTools::ReferenceableCheckStage::ReferenceableCheckStage(
|
CSMTools::ReferenceableCheckStage::ReferenceableCheckStage(
|
||||||
const CSMWorld::RefIdData& referenceable, const CSMWorld::IdCollection<ESM::Race >& races,
|
const CSMWorld::RefIdData& referenceable, const CSMWorld::IdCollection<ESM::Race >& races,
|
||||||
@ -661,7 +660,7 @@ void CSMTools::ReferenceableCheckStage::npcCheck(
|
|||||||
int gold(npc.mNpdt52.mGold);
|
int gold(npc.mNpdt52.mGold);
|
||||||
|
|
||||||
//Detect if player is present
|
//Detect if player is present
|
||||||
if (Misc::StringUtils::ciEqual(npc.mId, "player"))
|
if ( boost::algorithm::iequals(npc.mId, "player") )
|
||||||
{
|
{
|
||||||
mPlayerPresent = true;
|
mPlayerPresent = true;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user