diff options
Diffstat (limited to 'client/game.gd')
-rw-r--r-- | client/game.gd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/game.gd b/client/game.gd index 3ee960f7..ab2cdfbd 100644 --- a/client/game.gd +++ b/client/game.gd @@ -154,7 +154,7 @@ func _ready(): p.bubble.set_text(item_names[item]) ) - mp.send_join(Global.settings["username"], Global.settings["character"]) + mp.send_join(Global.profile["username"], Global.profile["character"]) func _process(delta): marker.position = lerp(marker.position, marker_target, delta * 40.0) |