aboutsummaryrefslogtreecommitdiff
path: root/client/game.gd
diff options
context:
space:
mode:
authortpart <tpart120@proton.me>2024-09-19 17:26:20 +0200
committertpart <tpart120@proton.me>2024-09-19 17:26:20 +0200
commitdae5a23514ed859d44720e03c8fc48d386b1ec2a (patch)
tree6bf50425e379dd0c24b339f896e4637259c472b9 /client/game.gd
parent1e9607acef238a9682e580706fe5b62dd5e1d864 (diff)
downloadhurrycurry-dae5a23514ed859d44720e03c8fc48d386b1ec2a.tar
hurrycurry-dae5a23514ed859d44720e03c8fc48d386b1ec2a.tar.bz2
hurrycurry-dae5a23514ed859d44720e03c8fc48d386b1ec2a.tar.zst
Fix: Crash when displaying score
Diffstat (limited to 'client/game.gd')
-rw-r--r--client/game.gd2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/game.gd b/client/game.gd
index 622bb38f..74279211 100644
--- a/client/game.gd
+++ b/client/game.gd
@@ -222,7 +222,7 @@ func handle_packet(p):
"book":
menu.submenu("res://menu/book/book.tscn")
"score":
- menu.submenu("res://menu/rating/rating.tscn", [p.data.stars, p.data.score])
+ menu.submenu("res://menu/rating/rating.tscn", [p.data.stars, p.data.points])
"server_message":
var mstr := get_message_str(p.message)
if p.error: