Added missing GameObjectModel::iLosBlockingDisabled initialization in constructor

This commit is contained in:
Shauren
2024-07-17 10:30:09 +02:00
parent 2756ca1c35
commit b3763c338d

View File

@@ -59,7 +59,7 @@ public:
class TC_COMMON_API GameObjectModel /*, public Intersectable*/
{
GameObjectModel() : iCollisionEnabled(false), iInvScale(0), iScale(0), iModel(nullptr) { }
GameObjectModel() : iCollisionEnabled(false), iLosBlockingDisabled(false), iInvScale(0), iScale(0), iModel(nullptr) { }
public:
const G3D::AABox& getBounds() const { return iBound; }