diff options
author | Stijn Buys <ingar@osirion.org> | 2015-09-19 17:37:44 +0000 |
---|---|---|
committer | Stijn Buys <ingar@osirion.org> | 2015-09-19 17:37:44 +0000 |
commit | 2a6063155ae7047e9a77bfc6471153b369ca2e39 (patch) | |
tree | c6e51b602f495b14511a14eb707ae783967a1e09 | |
parent | 2e84c896830b421bce3dee86be197c553cf89928 (diff) |
Corrected a typo in the 'wingmen launch' command.
-rw-r--r-- | src/game/base/game.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/base/game.cc b/src/game/base/game.cc index ffd2c90..59c1195 100644 --- a/src/game/base/game.cc +++ b/src/game/base/game.cc @@ -919,7 +919,7 @@ void Game::func_wingmen(core::Player *player, const std::string &args) player->send("^BWingmen entering combat!"); } - } else if ((str.compare("recall") == 0) || (str.compare("laucnh") == 0)) + } else if ((str.compare("recall") == 0) || (str.compare("launch") == 0)) { if (ship->has_flag(core::Entity::Dockable)) { if (ship->has_autopilot_flag(Ship::AutoPilotRecall)) |