diff options
author | Sergeanur <s.anureev@yandex.ua> | 2020-01-23 16:29:36 +0100 |
---|---|---|
committer | Sergeanur <s.anureev@yandex.ua> | 2020-01-23 16:29:36 +0100 |
commit | 9eb599ff58fcc9d3f89872a548fcf2221c65061f (patch) | |
tree | 6e25b762d26b51ed9f6778543b543c7d6b79e889 /src/entities/Solid.h | |
parent | ConstructMloClumps (diff) | |
download | re3-9eb599ff58fcc9d3f89872a548fcf2221c65061f.tar re3-9eb599ff58fcc9d3f89872a548fcf2221c65061f.tar.gz re3-9eb599ff58fcc9d3f89872a548fcf2221c65061f.tar.bz2 re3-9eb599ff58fcc9d3f89872a548fcf2221c65061f.tar.lz re3-9eb599ff58fcc9d3f89872a548fcf2221c65061f.tar.xz re3-9eb599ff58fcc9d3f89872a548fcf2221c65061f.tar.zst re3-9eb599ff58fcc9d3f89872a548fcf2221c65061f.zip |
Diffstat (limited to '')
-rw-r--r-- | src/entities/Solid.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/entities/Solid.h b/src/entities/Solid.h index f4679b3b..e67c8e29 100644 --- a/src/entities/Solid.h +++ b/src/entities/Solid.h @@ -6,9 +6,7 @@ class CSolid : public CEntity {
public:
CSolid(void) {
- bRemoveFromWorld = true;
- bHasHitWall = false;
- bImBeingRendered = false;
- m_flagE2 = true;
+ m_type = ENTITY_TYPE_BUILDING;
+ bUsesCollision = true;
}
};
\ No newline at end of file |