Skip to content

Commit

Permalink
update context's current turn when incrementing the server's turn
Browse files Browse the repository at this point in the history
  • Loading branch information
geoffthemedio committed May 1, 2022
1 parent 425fe97 commit 942eac5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/ServerApp.cpp
Expand Up @@ -3734,7 +3734,7 @@ void ServerApp::PostCombatProcessTurns() {

// update current turn number so that following visibility updates and info
// sent to players will have updated turn associated with them
++m_current_turn;
context.current_turn = ++m_current_turn;
DebugLogger() << "ServerApp::PostCombatProcessTurns Turn number incremented to " << m_current_turn;


Expand Down

0 comments on commit 942eac5

Please sign in to comment.