diff options
Diffstat (limited to 'client/game.gd')
-rw-r--r-- | client/game.gd | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/game.gd b/client/game.gd index f041cca9..8b2b00c3 100644 --- a/client/game.gd +++ b/client/game.gd @@ -185,8 +185,8 @@ func handle_packet(p): var player: Player = players[p.player] var item_name: String = item_names[p.message.item] player.item_message(item_name, timeout_initial, timeout_remaining) - #if player.is_customer and Global.get_profile("tutorials_played") < 3: - #mp.send_chat(player_id, "/start-tutorial %s" % item_name) + if player.is_customer and Global.get_profile("tutorials_played") < 3: + mp.send_chat(player_id, "/start-tutorial %s" % item_name) elif "text" in p.message: players[p.player].text_message(p.message.text, timeout_initial, timeout_remaining) var username: String = players[p.player].username |