mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-03-14 01:19:59 +00:00
Empty model exception fix
This commit is contained in:
parent
e8ec4387d6
commit
4036978718
@ -48,7 +48,7 @@ namespace MWClass
|
||||
assert (ref->mBase != NULL);
|
||||
|
||||
// TODO: add option somewhere to enable collision for placeable objects
|
||||
if ((ref->mBase->mData.mFlags & ESM::Light::Carry) == 0)
|
||||
if (!model.empty() && (ref->mBase->mData.mFlags & ESM::Light::Carry) == 0)
|
||||
physics.addObject(ptr, model);
|
||||
|
||||
if (!ref->mBase->mSound.empty() && !(ref->mBase->mData.mFlags & ESM::Light::OffDefault))
|
||||
|
Loading…
x
Reference in New Issue
Block a user