diff options
Diffstat (limited to 'client/menu')
-rw-r--r-- | client/menu/game.gd | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/client/menu/game.gd b/client/menu/game.gd index a2eb858c..fb0d2fa9 100644 --- a/client/menu/game.gd +++ b/client/menu/game.gd @@ -25,7 +25,6 @@ class_name GameMenu func _ready(): get_tree().get_root().connect("go_back_requested", open_ingame_menu) - game.mp.show_rating.connect(show_rating) super() func _input(_event): @@ -52,6 +51,3 @@ func open_ingame_menu(): if popup != null: return Sound.play_click() submenu("res://menu/ingame.tscn") - -func show_rating(stars: int, score: int): - submenu("res://menu/rating/rating.tscn", [stars, score]) |