mirror of
https://github.com/OpenMW/openmw.git
synced 2025-04-03 08:06:40 +00:00
Formatting fixes
This commit is contained in:
parent
45f25e3f14
commit
0085fb923e
2 changed files with 2 additions and 3 deletions
|
@ -31,7 +31,7 @@ namespace
|
||||||
book = LuaUtil::cast<ESM::Book>(rec["template"]);
|
book = LuaUtil::cast<ESM::Book>(rec["template"]);
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
book.blank();
|
book.blank();
|
||||||
book.mData.mSkillId = -1;
|
book.mData.mSkillId = -1;
|
||||||
}
|
}
|
||||||
if (rec["name"] != sol::nil)
|
if (rec["name"] != sol::nil)
|
||||||
|
@ -74,7 +74,6 @@ namespace
|
||||||
throw std::runtime_error("Incorrect skill: " + skill.toDebugString());
|
throw std::runtime_error("Incorrect skill: " + skill.toDebugString());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
return book;
|
return book;
|
||||||
}
|
}
|
||||||
|
|
|
@ -26,7 +26,7 @@ namespace
|
||||||
clothing = LuaUtil::cast<ESM::Clothing>(rec["template"]);
|
clothing = LuaUtil::cast<ESM::Clothing>(rec["template"]);
|
||||||
else
|
else
|
||||||
clothing.blank();
|
clothing.blank();
|
||||||
|
|
||||||
if (rec["name"] != sol::nil)
|
if (rec["name"] != sol::nil)
|
||||||
clothing.mName = rec["name"];
|
clothing.mName = rec["name"];
|
||||||
if (rec["model"] != sol::nil)
|
if (rec["model"] != sol::nil)
|
||||||
|
|
Loading…
Reference in a new issue