chore: removed debug prints

This commit is contained in:
Sara Gerretsen 2026-01-12 11:52:12 +01:00
parent a80888092f
commit d7fbcfbcde

View file

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