diff options
author | faketruth <faketruth@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-09-29 15:41:47 +0200 |
---|---|---|
committer | faketruth <faketruth@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-09-29 15:41:47 +0200 |
commit | fe61687b97d55c92bb29bf6aae1288433229353d (patch) | |
tree | 3701e23efd1969ebc7a32b51bcabfc08fafa72a4 /source/ClientHandle.h | |
parent | AnvilStats: Overall statistics and mobspawner statistics. (diff) | |
download | cuberite-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.h | 6 |
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; |