summaryrefslogtreecommitdiffstats
path: root/source/ClientHandle.h
diff options
context:
space:
mode:
authorfaketruth <faketruth@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-09-29 15:41:47 +0200
committerfaketruth <faketruth@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-09-29 15:41:47 +0200
commitfe61687b97d55c92bb29bf6aae1288433229353d (patch)
tree3701e23efd1969ebc7a32b51bcabfc08fafa72a4 /source/ClientHandle.h
parentAnvilStats: Overall statistics and mobspawner statistics. (diff)
downloadcuberite-fe61687b97d55c92bb29bf6aae1288433229353d.tar
cuberite-fe61687b97d55c92bb29bf6aae1288433229353d.tar.gz
cuberite-fe61687b97d55c92bb29bf6aae1288433229353d.tar.bz2
cuberite-fe61687b97d55c92bb29bf6aae1288433229353d.tar.lz
cuberite-fe61687b97d55c92bb29bf6aae1288433229353d.tar.xz
cuberite-fe61687b97d55c92bb29bf6aae1288433229353d.tar.zst
cuberite-fe61687b97d55c92bb29bf6aae1288433229353d.zip
Diffstat (limited to '')
-rw-r--r--source/ClientHandle.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/source/ClientHandle.h b/source/ClientHandle.h
index 1e627a017..e5625eb20 100644
--- a/source/ClientHandle.h
+++ b/source/ClientHandle.h
@@ -46,7 +46,11 @@ public:
static const int MAXBLOCKCHANGEINTERACTIONS = 20; // 5 didn't help, 10 still doesn't work in Creative, 20 seems to have done the trick
- static const int DEFAULT_VIEW_DISTANCE = 9; // The default ViewDistance (used when no value is set in Settings.ini)
+#if defined(ANDROID_NDK)
+ static const int DEFAULT_VIEW_DISTANCE = 4; // The default ViewDistance (used when no value is set in Settings.ini)
+#else
+ static const int DEFAULT_VIEW_DISTANCE = 9;
+#endif
static const int MAX_VIEW_DISTANCE = 10;
static const int MIN_VIEW_DISTANCE = 4;