Skip to content

Commit

Permalink
Fix new world/floor collision bug: Make objects respawnable by default (
Browse files Browse the repository at this point in the history
  • Loading branch information
TheNormalnij authored Sep 28, 2024
1 parent 20a161d commit ed2d08f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Server/mods/deathmatch/logic/CObject.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ CObject::CObject(CElement* pParent, CObjectManager* pObjectManager, bool bIsLowL
m_bIsFrozen = false;
m_bDoubleSided = false;
m_bBreakable = false;
m_bRespawnable = false;
m_bRespawnable = true;

m_bCollisionsEnabled = true;

Expand Down

0 comments on commit ed2d08f

Please sign in to comment.