Set the minimum viewdistance to 3.

Fixes #167.
master
madmaxoft 2013-09-14 21:34:26 +02:00
parent 3ed9e148e8
commit a1c5ad0594
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ public:
static const int DEFAULT_VIEW_DISTANCE = 9; static const int DEFAULT_VIEW_DISTANCE = 9;
#endif #endif
static const int MAX_VIEW_DISTANCE = 10; static const int MAX_VIEW_DISTANCE = 10;
static const int MIN_VIEW_DISTANCE = 4; static const int MIN_VIEW_DISTANCE = 3;
/// How many ticks should be checked for a running average of explosions, for limiting purposes /// How many ticks should be checked for a running average of explosions, for limiting purposes
static const int NUM_CHECK_EXPLOSIONS_TICKS = 20; static const int NUM_CHECK_EXPLOSIONS_TICKS = 20;