diff --git a/src/character_actor.cpp b/src/character_actor.cpp index 035c88a..8da7733 100644 --- a/src/character_actor.cpp +++ b/src/character_actor.cpp @@ -27,8 +27,9 @@ void CharacterActor::_process(double delta_time) { GDGAMEONLY(); if(!this->mode_manual) { this->process_ai(delta_time); } - if(this->firing) + if(this->firing) { this->try_fire_weapon(); + } } void CharacterActor::_physics_process(double delta_time) { GDGAMEONLY();