diff options
author | Stijn Buys <ingar@osirion.org> | 2009-08-16 17:34:00 +0000 |
---|---|---|
committer | Stijn Buys <ingar@osirion.org> | 2009-08-16 17:34:00 +0000 |
commit | d763e294f44eb38b94bf7e2055b77a982b72b7c0 (patch) | |
tree | 37f91c6b7fee58fcecfbfc54dda3f71eb8617b9f /src/game/intro | |
parent | 95cc140404c6524ea16e193e1421e826b239114f (diff) |
more constness
Diffstat (limited to 'src/game/intro')
-rw-r--r-- | src/game/intro/convoy.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/game/intro/convoy.cc b/src/game/intro/convoy.cc index a0cc27c..ac52c38 100644 --- a/src/game/intro/convoy.cc +++ b/src/game/intro/convoy.cc @@ -68,9 +68,9 @@ void Convoy::add(const std::string &model) member->get_location().assign(location()); d = ((float) convoy_members.size()) * 0.5f; - member->get_location().x += math::randomf((float) convoy_members.size()) -d; - member->get_location().y += math::randomf((float) convoy_members.size()) -d; - member->get_location().z += (math::randomf((float) convoy_members.size()) -d) * 0.5f; + member->get_location().get_x() += math::randomf((float) convoy_members.size()) -d; + member->get_location().get_y() += math::randomf((float) convoy_members.size()) -d; + member->get_location().get_z() += (math::randomf((float) convoy_members.size()) -d) * 0.5f; member->get_axis().assign(axis()); } |