aboutsummaryrefslogtreecommitdiff
path: root/client/player/controllable_player.gd
diff options
context:
space:
mode:
authornokoe <nokoe@mailbox.org>2024-06-28 14:42:03 +0200
committernokoe <nokoe@mailbox.org>2024-06-28 14:43:15 +0200
commit45abc0fd1630d930bcd56d1a107a29e298d8e20f (patch)
treef7b49242ef849984f1a51ab63bde8fbf8f25e420 /client/player/controllable_player.gd
parentd3f8dd31f27d2677f4a96af490c94e5530c6214c (diff)
downloadhurrycurry-45abc0fd1630d930bcd56d1a107a29e298d8e20f.tar
hurrycurry-45abc0fd1630d930bcd56d1a107a29e298d8e20f.tar.bz2
hurrycurry-45abc0fd1630d930bcd56d1a107a29e298d8e20f.tar.zst
add item messages
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):