mirror of
https://github.com/OpenMW/openmw.git
synced 2025-02-21 11:39:44 +00:00
Fast fix in cellbindings.cpp
This commit is contained in:
parent
cd484cf082
commit
50b143b53f
1 changed files with 1 additions and 1 deletions
|
@ -41,7 +41,7 @@ namespace MWLua
|
|||
cellT["isExterior"] = sol::readonly_property([](const CellT& c) { return c.mStore->isExterior(); });
|
||||
cellT["isQuasiExterior"] = sol::readonly_property([](const CellT& c)
|
||||
{
|
||||
return c.mStore->getCell()->mData.mFlags & ESM::Cell::QuasiEx;
|
||||
return (c.mStore->getCell()->mData.mFlags & ESM::Cell::QuasiEx) != 0;
|
||||
});
|
||||
|
||||
cellT["isInSameSpace"] = [](const CellT& c, const ObjectT& obj)
|
||||
|
|
Loading…
Reference in a new issue