diff options
author | Stijn Buys <ingar@osirion.org> | 2012-12-08 16:10:22 +0000 |
---|---|---|
committer | Stijn Buys <ingar@osirion.org> | 2012-12-08 16:10:22 +0000 |
commit | 57b1ed8e27b20c17cdd27be461a377a8021ce872 (patch) | |
tree | 4cbf654cfc19530addb3ce1a64288fc3519f55e9 | |
parent | 70237f8e16ed093104e6e42ba322902b8c5d1ddc (diff) |
Corrected typographic errors.
-rw-r--r-- | src/game/base/jumppoint.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/game/base/jumppoint.cc b/src/game/base/jumppoint.cc index eb3d6c2..e1b9c7e 100644 --- a/src/game/base/jumppoint.cc +++ b/src/game/base/jumppoint.cc @@ -53,12 +53,12 @@ void JumpPoint::validate() return; if (targetlabel().size() < 3) { - con_warn << " Jumppoint '" << label() << "'with invalid target '" << targetlabel() << "'\n"; + con_warn << " Jumppoint '" << label() << "' has invalid target '" << targetlabel() << "'\n"; return; } size_t pos = targetlabel().find(':'); if ((pos == std::string::npos) || (pos < 1) || (pos >= (targetlabel().size() - 1))) { - con_warn << " Jumppoint '" << label() << "'with invalid target '" << targetlabel() << "'\n"; + con_warn << " Jumppoint '" << label() << "' has invalid target '" << targetlabel() << "'\n"; return; } @@ -67,18 +67,18 @@ void JumpPoint::validate() core::Zone *targetzone = core::Zone::find(zonelabel); if (!targetzone) { - con_warn << " Jumppoint '" << label() << "'with invalid target zone '" << zonelabel << "'\n"; + con_warn << " Jumppoint '" << label() << "' has invalid target zone '" << zonelabel << "'\n"; return; } core::Entity *targetentity = targetzone->find_entity(entitylabel); if (!targetentity) { - con_warn << " Jumppoint '" << label() << "'with unknown target '" << entitylabel << "' in zone '" << zonelabel << "'\n"; + con_warn << " Jumppoint '" << label() << "' has unknown target '" << entitylabel << "' in zone '" << zonelabel << "'\n"; return; } if ((targetentity->moduletype() != jumppoint_enttype) && (targetentity->moduletype() != jumpgate_enttype)) { - con_warn << " Jumppoint '" << label() << "'with invalid target '" << entitylabel << "' in zone '" << zonelabel << "'\n"; + con_warn << " Jumppoint '" << label() << "' has invalid target '" << entitylabel << "' in zone '" << zonelabel << "'\n"; return; } |