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"); } }