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>2012-12-02 16:57:19 +0000
committerStijn Buys <ingar@osirion.org>2012-12-02 16:57:19 +0000
commitd972dd5d94469806c29cd7d11922acc00cb08337 (patch)
treeaf3fd460f2822fb27019e74717a53c865a74e25b /src/core/entity.cc
parent5b6e0a07149b148b0efa327435345f5860def895 (diff)
Lower bullet velocity threshold to 0.001f.
Diffstat (limited to 'src/core/entity.cc')
-rw-r--r--src/core/entity.cc2
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;