From 57b1ed8e27b20c17cdd27be461a377a8021ce872 Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Sat, 8 Dec 2012 16:10:22 +0000 Subject: Corrected typographic errors. --- src/game/base/jumppoint.cc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src') 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; } -- cgit v1.2.3