diff options
author | Stijn Buys <ingar@osirion.org> | 2009-11-15 15:35:59 +0000 |
---|---|---|
committer | Stijn Buys <ingar@osirion.org> | 2009-11-15 15:35:59 +0000 |
commit | 7888930bf0a75999e103f7781c095e04b6860ee5 (patch) | |
tree | 5e42e818366181590fedc15e06548b1e463265e7 /src/game/intro | |
parent | 89c0bc88bd4ebdc44dfb99235609c90e968af533 (diff) |
added entity request network message
Diffstat (limited to 'src/game/intro')
-rw-r--r-- | src/game/intro/convoy.cc | 5 |
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"); |