Added missing GameObjectModel::iLosBlockingDisabled initialization in constructor

(cherry picked from commit b3763c338d)
This commit is contained in:
Shauren
2024-07-17 10:30:09 +02:00
committed by Ovahlord
parent d7a26b3897
commit f9451f1cf5

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; }