1
0

Set the minimum viewdistance to 3.

Fixes #167.
This commit is contained in:
madmaxoft 2013-09-14 21:34:26 +02:00
parent 3ed9e148e8
commit a1c5ad0594

View File

@ -56,7 +56,7 @@ public:
static const int DEFAULT_VIEW_DISTANCE = 9;
#endif
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
static const int NUM_CHECK_EXPLOSIONS_TICKS = 20;