From 8126e1941666f5dccd61e9ecc60db162049bb8ff Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Sun, 3 Nov 2013 23:35:59 +0000 Subject: Added initial support for NPC patrol routes, added support for lawfull/unlawfull factions. --- src/game/base/jumppoint.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/game/base/jumppoint.h') diff --git a/src/game/base/jumppoint.h b/src/game/base/jumppoint.h index 33a9f9f..655d133 100644 --- a/src/game/base/jumppoint.h +++ b/src/game/base/jumppoint.h @@ -31,8 +31,8 @@ public: JumpPoint(); virtual ~JumpPoint(); - inline std::string const & targetlabel() { - return jumppoint_targetlabel; + inline std::string const & target_label() { + return jumppoint_target_label; } inline JumpPoint *target() { @@ -40,9 +40,9 @@ public: } /// set trget label - void set_targetlabel(const std::string &label); + void set_target_label(const std::string &label); - /// validate the targetlabel and set target() + /// validate the target_label and set target() virtual void validate(); static inline void set_template (const Template *entitytemplate) { @@ -50,7 +50,7 @@ public: } private: - std::string jumppoint_targetlabel; + std::string jumppoint_target_label; JumpPoint *jumppoint_target; static const Template *jumppoint_template; @@ -63,7 +63,7 @@ public: JumpGate(); virtual ~JumpGate(); - /// validate the targetlabel and set target() + /// validate the target_label and set target() virtual void validate(); /// a ship wants to use the jumpgate -- cgit v1.2.3