From 051406cf4010aa0c3d3468999614bf5c2e0947bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torjus=20H=C3=A5kestad?= Date: Wed, 20 Aug 2025 09:46:53 +0200 Subject: [PATCH] game: remove old debug prints --- global_const.gd | 1 - scenes/managers/ui/level_up_choice.gd | 1 - scenes/managers/ui/player_ui.gd | 1 - 3 files changed, 3 deletions(-) diff --git a/global_const.gd b/global_const.gd index 78b641b..0b27129 100644 --- a/global_const.gd +++ b/global_const.gd @@ -102,7 +102,6 @@ func draw_random_mod(fortune: float = 1.0) -> PlayerStatsModifier: mod.description = choice["description"] mod.internal_name = choice["internal_name"] mod.tex = choice["tex"] - print_debug("gc: %s" % mod.tex) mod.title = choice["name"] return mod diff --git a/scenes/managers/ui/level_up_choice.gd b/scenes/managers/ui/level_up_choice.gd index 7605f65..4978097 100644 --- a/scenes/managers/ui/level_up_choice.gd +++ b/scenes/managers/ui/level_up_choice.gd @@ -25,7 +25,6 @@ func _ready() -> void: upgrade_name.text = mod.title upgrade_description.text = mod.description upgrade_tex.texture = mod.tex - print_debug("tex: %s" % mod.tex) func _on_pick_button_pressed() -> void: diff --git a/scenes/managers/ui/player_ui.gd b/scenes/managers/ui/player_ui.gd index a4bab63..48bdffe 100644 --- a/scenes/managers/ui/player_ui.gd +++ b/scenes/managers/ui/player_ui.gd @@ -42,7 +42,6 @@ func update_xp(): push_error("cant update xp, no player found") var current_xp = player.player_stats.get_final("current_xp", player.modifiers) var max_xp = player.player_stats.xp_required_for_level() - print_debug("updating xp bar: %s-%s" % [current_xp, max_xp]) wanted_xp_value = current_xp wanted_xp_max = max_xp