diff options
author | Stijn Buys <ingar@osirion.org> | 2015-02-01 21:28:49 +0000 |
---|---|---|
committer | Stijn Buys <ingar@osirion.org> | 2015-02-01 21:28:49 +0000 |
commit | 6898ad148be30c3c9ec7912ef914a085438ce206 (patch) | |
tree | c256dc5300ba209a6cf3ca9bfb0e5daa120741ad | |
parent | a0d8d44c93820754e887603ce6251c8ac135802e (diff) |
Reduce drawing distance to 50km and fx distance to 20km.
-rw-r--r-- | src/core/range.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/range.h b/src/core/range.h index c5265c4..aa4e941 100644 --- a/src/core/range.h +++ b/src/core/range.h @@ -25,12 +25,12 @@ namespace range * the maximal radar range * and the maximal range to send entity updates */ -const float maxdistance = 1024.0f; +const float maxdistance = 500.0f; /** * @brief maximal range in which graphics effects are drawn * */ -const float fxdistance = 256.0f; +const float fxdistance = 200.0f; /** * @brief reputation limit to indicate hostile targets |