From d972dd5d94469806c29cd7d11922acc00cb08337 Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Sun, 2 Dec 2012 16:57:19 +0000 Subject: Lower bullet velocity threshold to 0.001f. --- src/core/entity.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/core') 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; -- cgit v1.2.3