fix: removed some forgotten print_lines

This commit is contained in:
Sara 2025-07-22 13:14:17 +02:00
parent 97e0c1a79d
commit a0c143d3b5
2 changed files with 0 additions and 2 deletions

View file

@ -17,7 +17,6 @@ void EnemyWretched::on_child_entered(Node *node) {
}
}
void EnemyWretched::ready() {
print_line("ready");
fsm->add_state(memnew(WretchedPatrolState));
fsm->add_state(memnew(WretchedChaseState));
fsm->add_state(memnew(WretchedAttackState));

View file

@ -47,7 +47,6 @@ void PlayerDetector::process(double delta) {
}
void PlayerDetector::set_aware_of_player(bool value) {
print_line(vformat("awareness changed to %s", value));
emit_signal(sig_awareness_changed, value);
this->aware_of_player = value;
}