aboutsummaryrefslogtreecommitdiff
path: root/client/player/controllable_player.gd
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2024-06-28 17:10:56 +0200
committermetamuffin <metamuffin@disroot.org>2024-06-28 17:10:56 +0200
commit1a46bf0d72ed0099bf9ca79fe83874ec4d63b875 (patch)
tree24d4865b8a66f661f77195e1c334ded4489f1854 /client/player/controllable_player.gd
parent61d81259387f95fd17a5156251eaf9c8688ca120 (diff)
parent45abc0fd1630d930bcd56d1a107a29e298d8e20f (diff)
downloadhurrycurry-1a46bf0d72ed0099bf9ca79fe83874ec4d63b875.tar
hurrycurry-1a46bf0d72ed0099bf9ca79fe83874ec4d63b875.tar.bz2
hurrycurry-1a46bf0d72ed0099bf9ca79fe83874ec4d63b875.tar.zst
Merge branch 'master' of https://codeberg.org/metamuffin/undercooked
Diffstat (limited to 'client/player/controllable_player.gd')
-rw-r--r--client/player/controllable_player.gd6
1 files changed, 3 insertions, 3 deletions
diff --git a/client/player/controllable_player.gd b/client/player/controllable_player.gd
index 007b10db..67a7ca09 100644
--- a/client/player/controllable_player.gd
+++ b/client/player/controllable_player.gd
@@ -41,14 +41,14 @@ func _ready():
game.mp.send_position(position_, rotation_)
)
super()
- bubble.submit_message.connect(submit_message)
+ chat_bubble.submit_message.connect(submit_message)
func _input(_event):
if Input.is_action_just_pressed("chat"):
if chat_open:
- bubble.stop_edit()
+ chat_bubble.stop_edit()
else:
- bubble.edit()
+ chat_bubble.edit()
chat_open = !chat_open
func _process(delta):