From d7fbcfbcdee1d5eed0d4d035dd7dcab77f82108a Mon Sep 17 00:00:00 2001 From: Sara Date: Mon, 12 Jan 2026 11:52:12 +0100 Subject: [PATCH] chore: removed debug prints --- modules/break_utopia/player_states.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/modules/break_utopia/player_states.cpp b/modules/break_utopia/player_states.cpp index b1a1b229..f41bc1e7 100644 --- a/modules/break_utopia/player_states.cpp +++ b/modules/break_utopia/player_states.cpp @@ -270,14 +270,11 @@ void PlayerSpecialAttackState::fail_activation() { } void PlayerSpecialAttackState::state_entered() { - print_line("meter:", LevelStatus::get_instance()->get_energy(), "cost:", this->meter_cost); this->activated_succesful = LevelStatus::get_instance()->try_use_energy(this->meter_cost); if (this->activated_succesful) { super_type::state_entered(); - print_line("activated"); } else { callable_mp(this, &self_type::fail_activation).call_deferred(); - print_line("failed"); } }