feat: Do trigger updates on shop close

This commit is contained in:
Dendy 2026-03-06 10:21:02 +01:00
parent f0076021f6
commit 2b4a2b937e
1 changed files with 3 additions and 1 deletions

View File

@ -143,7 +143,9 @@ func _on_continue_button_pressed():
func _on_shop_shop_exit() -> void:
func _on_shop_shop_exit() -> void:
$Upgrades.update()
$SpecialUpgrades.update()
is_active = true
$Shop.visible = false
stage_counter += 1