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>2009-11-15 15:35:59 +0000
committerStijn Buys <ingar@osirion.org>2009-11-15 15:35:59 +0000
commit7888930bf0a75999e103f7781c095e04b6860ee5 (patch)
tree5e42e818366181590fedc15e06548b1e463265e7 /src/game/intro/convoy.cc
parent89c0bc88bd4ebdc44dfb99235609c90e968af533 (diff)
added entity request network message
Diffstat (limited to 'src/game/intro/convoy.cc')
-rw-r--r--src/game/intro/convoy.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/game/intro/convoy.cc b/src/game/intro/convoy.cc
index 413e377..b037b0b 100644
--- a/src/game/intro/convoy.cc
+++ b/src/game/intro/convoy.cc
@@ -12,8 +12,9 @@ namespace intro
/* ---- class Member ----------------------------------------------- */
-Member::Member(std::string const &model) : core::EntityControlable(0, 1)
+Member::Member(std::string const &model) : core::EntityControlable()
{
+ entity_moduletypeid = 1;
set_name("Convoy ship");
set_label("ship");
@@ -35,6 +36,8 @@ void Member::frame(float seconds)
Convoy::Convoy(core::Zone *zone) : core::EntityDynamic()
{
+ entity_moduletypeid = 2;
+
set_zone(zone);
set_label("convoy");
set_name("Convoy");