aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--client/game.gd3
1 files changed, 2 insertions, 1 deletions
diff --git a/client/game.gd b/client/game.gd
index 08493b2e..94826b1c 100644
--- a/client/game.gd
+++ b/client/game.gd
@@ -239,7 +239,8 @@ func handle_packet(p):
Global.set_profile("tutorials_played", played)
Global.save_profile()
- tutorial_queue.erase(item_names[p.item])
+ while item_names[p.item] in tutorial_queue:
+ tutorial_queue.erase(item_names[p.item])
if not tutorial_queue.is_empty():
tutorial_running = true