mirror of
https://github.com/OpenMW/openmw.git
synced 2025-02-06 11:45:35 +00:00
Merge branch 'quotes' into 'master'
Remove redundant quotes See merge request OpenMW/openmw!2889
This commit is contained in:
commit
b04bcb9a9b
4 changed files with 7 additions and 10 deletions
|
@ -61,8 +61,8 @@ namespace MWMechanics
|
|||
// Vanilla doesn't fail on nonexistent items in levelled lists
|
||||
if (!MWBase::Environment::get().getWorld()->getStore().find(item))
|
||||
{
|
||||
Log(Debug::Warning) << "Warning: ignoring nonexistent item '" << item << "' in levelled list '"
|
||||
<< levItem->mId << "'";
|
||||
Log(Debug::Warning) << "Warning: ignoring nonexistent item " << item << " in levelled list "
|
||||
<< levItem->mId;
|
||||
return ESM::RefId::sEmpty;
|
||||
}
|
||||
|
||||
|
|
|
@ -307,7 +307,7 @@ namespace MWMechanics
|
|||
if (spell)
|
||||
addSpell(spell);
|
||||
else
|
||||
Log(Debug::Warning) << "Warning: ignoring nonexistent spell '" << id << "'";
|
||||
Log(Debug::Warning) << "Warning: ignoring nonexistent spell " << id;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -372,7 +372,7 @@ namespace MWWorld
|
|||
}
|
||||
else
|
||||
{
|
||||
Log(Debug::Warning) << "Warning: could not resolve cell reference '" << ref.mRefID << "'"
|
||||
Log(Debug::Warning) << "Warning: could not resolve cell reference " << ref.mRefID
|
||||
<< " (dropping reference)";
|
||||
}
|
||||
}
|
||||
|
@ -395,8 +395,7 @@ namespace MWWorld
|
|||
}
|
||||
else
|
||||
{
|
||||
Log(Debug::Warning) << "Warning: could not resolve cell reference '" << ref.mId << "'"
|
||||
<< " (dropping reference)";
|
||||
Log(Debug::Warning) << "Warning: could not resolve cell reference " << ref.mId << " (dropping reference)";
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -15,8 +15,7 @@ namespace ESM
|
|||
mDoorState = 0;
|
||||
esm.getHNOT(mDoorState, "ANIM");
|
||||
if (mDoorState < 0 || mDoorState > 2)
|
||||
Log(Debug::Warning) << "Dropping invalid door state (" << mDoorState << ") for door \"" << mRef.mRefID
|
||||
<< "\"";
|
||||
Log(Debug::Warning) << "Dropping invalid door state (" << mDoorState << ") for door " << mRef.mRefID;
|
||||
}
|
||||
|
||||
void DoorState::save(ESMWriter& esm, bool inInventory) const
|
||||
|
@ -25,8 +24,7 @@ namespace ESM
|
|||
|
||||
if (mDoorState < 0 || mDoorState > 2)
|
||||
{
|
||||
Log(Debug::Warning) << "Dropping invalid door state (" << mDoorState << ") for door \"" << mRef.mRefID
|
||||
<< "\"";
|
||||
Log(Debug::Warning) << "Dropping invalid door state (" << mDoorState << ") for door " << mRef.mRefID;
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue