Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/game/base/cargopod.h3
-rw-r--r--src/game/base/ship.cc3
2 files changed, 4 insertions, 2 deletions
diff --git a/src/game/base/cargopod.h b/src/game/base/cargopod.h
index c843efb..daeb9bc 100644
--- a/src/game/base/cargopod.h
+++ b/src/game/base/cargopod.h
@@ -21,4 +21,5 @@ public:
} // namespace game
-#endif // __INCLUDED_BASE_CARGOPOD_H__ \ No newline at end of file
+#endif // __INCLUDED_BASE_CARGOPOD_H__
+
diff --git a/src/game/base/ship.cc b/src/game/base/ship.cc
index d7d6b59..88aefbe 100644
--- a/src/game/base/ship.cc
+++ b/src/game/base/ship.cc
@@ -77,7 +77,8 @@ Ship::Ship(core::Player *owner, ShipModel *shipmodel) : core::EntityControlable(
set_flag(core::Entity::Dockable);
}
- set_mass(radius());
+ //set_mass(radius());
+ set_mass(0);
reset();
}