diff --git a/src/state_machine.cpp b/src/state_machine.cpp index 15e9d89..647ad40 100644 --- a/src/state_machine.cpp +++ b/src/state_machine.cpp @@ -22,7 +22,6 @@ void StateMachine::_exit_tree() { GDGAMEONLY(); } void StateMachine::_process(double delta_time) { GDGAMEONLY(); - UtilityFunctions::print(this->get_path(), " _process"); if(this->state) this->override_state(this->state->get_next()); }