aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--client/game.gd2
1 files changed, 2 insertions, 0 deletions
diff --git a/client/game.gd b/client/game.gd
index bb0279de..08493b2e 100644
--- a/client/game.gd
+++ b/client/game.gd
@@ -231,6 +231,8 @@ func handle_packet(p):
if p.time_remaining != null:
overlay.update(p.demands_failed, p.demands_completed, p.points, p.time_remaining)
"tutorial_ended":
+ if p.player != player_id: return
+
tutorial_running = false
var played: Array = Global.get_profile("tutorials_played")
played.append(item_names[p.item])