Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/base/ship.cc')
-rw-r--r--src/game/base/ship.cc8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/game/base/ship.cc b/src/game/base/ship.cc
index d0bea4a..c48bf7a 100644
--- a/src/game/base/ship.cc
+++ b/src/game/base/ship.cc
@@ -122,18 +122,14 @@ void Ship::func_jump(std::string const &args)
// devel mode provides instant jump access to arbitrary systems
if (Game::g_devel->value() && (args.size())) {
- core::Zone *jumptargetzone = 0;
- std::string target(args);
+ core::Zone *jumptargetzone = core::Zone::search(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;
if (helpstr.size())
helpstr.append("^N|^B");
- helpstr.append(zone->label());
+ helpstr.append((*it).second->label());
}
owner()->send("Usage: jump [^B" + helpstr + "^N]");
return;