Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2011-08-07 12:14:12 +0000
committerStijn Buys <ingar@osirion.org>2011-08-07 12:14:12 +0000
commit33fabb093ff391dda41b04f6a6634c940e134e9c (patch)
tree773a549585cc09695687dd70378063859e6597e8 /src/game/base/jumppoint.cc
parent219d005ad0643a0b94b3f02de563c9ebd91a2761 (diff)
Add zone label to the entity info label.
Diffstat (limited to 'src/game/base/jumppoint.cc')
-rw-r--r--src/game/base/jumppoint.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/game/base/jumppoint.cc b/src/game/base/jumppoint.cc
index 6542b84..91350c7 100644
--- a/src/game/base/jumppoint.cc
+++ b/src/game/base/jumppoint.cc
@@ -91,7 +91,10 @@ void JumpPoint::validate()
// info is const, core::Info::find returns a non-const pointer
core::Info *entity_info = core::Info::find(info());
if (!entity_info) {
- entity_info = new core::Info(core::Entity::infotype(), label().c_str());
+ std::string labelstr(zone()->label());
+ labelstr += ':';
+ labelstr.append(label());
+ entity_info = new core::Info(core::Entity::infotype(), labelstr.c_str());
set_info(entity_info);
}
entity_info->clear_text();