Skip to content

Commit

Permalink
SpawnManager: Fix missing init of m_updated
Browse files Browse the repository at this point in the history
  • Loading branch information
killerwife committed Jan 4, 2024
1 parent 50dcf7a commit b5767f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/game/Maps/SpawnManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ bool operator<(SpawnInfo const& lhs, SpawnInfo const& rhs);
class SpawnManager
{
public:
SpawnManager(Map& map) : m_map(map) {}
SpawnManager(Map& map) : m_map(map), m_updated(false) {}
~SpawnManager();
void Initialize();

Expand Down

0 comments on commit b5767f0

Please sign in to comment.