diff --git a/asteroids/ControllerCommands.cc b/asteroids/ControllerCommands.cc index 486204e..1787a5a 100644 --- a/asteroids/ControllerCommands.cc +++ b/asteroids/ControllerCommands.cc @@ -141,11 +141,8 @@ bool Cmd_ControllerAttack (std::vector args) { if (player_entity) { player_entity->Attack (); return true; - } else { - Engine::LogError ("Could not attack: player entity not found"); - } - + return false; }