From be5c5ba78b4d464fc85076e194fc8d03b77d3f14 Mon Sep 17 00:00:00 2001 From: Holger Schemel Date: Wed, 13 Feb 2019 01:24:38 +0100 Subject: [PATCH 1/1] fixed bug with summarized input actions in network games --- src/game.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/game.c b/src/game.c index ed560daf..2dcc07a4 100644 --- a/src/game.c +++ b/src/game.c @@ -11465,8 +11465,9 @@ static void GameActionsExt(void) stored_player[map_player_action[local_player->index_nr]].effective_action = summarized_player_action; + // summarize all actions at centered player in local team mode if (tape.recording && - setup.team_mode && + setup.team_mode && !network.enabled && setup.input_on_focus && game.centered_player_nr != -1) { -- 2.34.1