diff options
author | Stijn Buys <ingar@osirion.org> | 2012-12-02 16:57:19 +0000 |
---|---|---|
committer | Stijn Buys <ingar@osirion.org> | 2012-12-02 16:57:19 +0000 |
commit | d972dd5d94469806c29cd7d11922acc00cb08337 (patch) | |
tree | af3fd460f2822fb27019e74717a53c865a74e25b /src | |
parent | 5b6e0a07149b148b0efa327435345f5860def895 (diff) |
Lower bullet velocity threshold to 0.001f.
Diffstat (limited to 'src')
-rw-r--r-- | src/core/entity.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/entity.cc b/src/core/entity.cc index e7cd70a..67227ca 100644 --- a/src/core/entity.cc +++ b/src/core/entity.cc @@ -24,7 +24,7 @@ namespace core // maximal number of entities const size_t MAX_ENTITY = 1048574; // minimal speed -const float SPEED_THRESHOLD = 0.01f; +const float SPEED_THRESHOLD = 0.001f; using math::Color; using math::Vector3f; |