rnd-20060203-1-src
[rocksndiamonds.git] / src / screens.c
index 013993c02a80b859c3ba1b0e856f0a19ea20b041..c7382d07776c28afce6541d4000f12c99e030dae 100644 (file)
@@ -3146,7 +3146,18 @@ void HandleGameActions()
     if (tape.recording)
       TapeRecordAction(tape_action);
 
+#if 1
+    {
+      byte effective_action[MAX_PLAYERS];
+
+      for (i = 0; i < MAX_PLAYERS; i++)
+       effective_action[i] = stored_player[i].effective_action;
+
+      GameActions_EM(effective_action);
+    }
+#else
     GameActions_EM(local_player->effective_action);
+#endif
 
     if (TimeFrames >= FRAMES_PER_SECOND)
     {