From bf5e410cb8c041aa6e55fe9e9c38b79d30ee14ec Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Sat, 20 Dec 2008 14:53:07 +0000 Subject: fixed zone list for the jump command in g_devel mode --- src/game/base/ship.cc | 16 +++++----------- src/game/base/shipdealer.cc | 12 +++++++++--- 2 files changed, 14 insertions(+), 14 deletions(-) (limited to 'src/game') diff --git a/src/game/base/ship.cc b/src/game/base/ship.cc index 7735aa1..d0bea4a 100644 --- a/src/game/base/ship.cc +++ b/src/game/base/ship.cc @@ -123,9 +123,11 @@ void Ship::func_jump(std::string const &args) if (Game::g_devel->value() && (args.size())) { core::Zone *jumptargetzone = 0; - std::string target; - std::istringstream is(args); - if (!(is >> target)) { + std::string target(args); + + aux::to_lowercase(target); + jumptargetzone = core::Zone::find_zone(target); + if (!jumptargetzone) { std::string helpstr; for (core::Zone::Registry::iterator it = core::Zone::registry().begin(); it != core::Zone::registry().end(); it++) { core::Zone *zone = (*it).second; @@ -133,18 +135,10 @@ void Ship::func_jump(std::string const &args) helpstr.append("^N|^B"); helpstr.append(zone->label()); } - owner()->send("Usage: jump [^B" + helpstr + "^N]"); return; } - aux::to_lowercase(target); - jumptargetzone = core::Zone::find_zone(target); - if (!jumptargetzone) { - owner()->send("Unknown system '" + target + '\''); - return; - } - if (jumptargetzone == zone()) { owner()->send("Already in the " + jumptargetzone->name()); return; diff --git a/src/game/base/shipdealer.cc b/src/game/base/shipdealer.cc index 1a827ec..fb6415c 100644 --- a/src/game/base/shipdealer.cc +++ b/src/game/base/shipdealer.cc @@ -86,13 +86,19 @@ void ShipDealer::func_buy(core::Player *player, const std::string &args) if (helpstr.size()) helpstr.append("^N|^B"); - helpstr.append((*smit).second->label()); + helpstr.append((*smit).first); } } if (!shipmodel) { - player->send("Usage: buy [^B" + helpstr + "^N]"); - return; + if (!Game::g_devel->value()) { + player->send("Cheats disabled"); + return; + + } else { + player->send("Usage: buy [^B" + helpstr + "^N]"); + return; + } } /// find the ship dealer we're buying the ship from -- cgit v1.2.3