diff options
author | tpart <tpart120@proton.me> | 2024-09-19 21:34:36 +0200 |
---|---|---|
committer | tpart <tpart120@proton.me> | 2024-09-19 21:34:36 +0200 |
commit | 587950317a88edc5513797ea0dff21df703cd128 (patch) | |
tree | 7a36768ff3c94f213915b4bb6cb9cf337358f229 /client/global.gd | |
parent | d319839a64330ac9d13d28a9ab72677545066e07 (diff) | |
download | hurrycurry-587950317a88edc5513797ea0dff21df703cd128.tar hurrycurry-587950317a88edc5513797ea0dff21df703cd128.tar.bz2 hurrycurry-587950317a88edc5513797ea0dff21df703cd128.tar.zst |
Keep track of played tutorials; Implement tutorial ended packet
Diffstat (limited to 'client/global.gd')
-rw-r--r-- | client/global.gd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/global.gd b/client/global.gd index a4f7ed2a..41677e46 100644 --- a/client/global.gd +++ b/client/global.gd @@ -26,7 +26,7 @@ var default_profile := { "username": "Giovanni", "character": 0, "last_server_url": "", - "tutorials_played": 0, + "tutorials_played": [], "hints": { "has_seen_nametags": false, "has_moved": false, |