From 17505991658062a1018a93dad252e7896dc8ca05 Mon Sep 17 00:00:00 2001 From: MihailRis Date: Fri, 17 May 2024 22:30:10 +0300 Subject: [PATCH] max load-distance increased --- src/settings.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/settings.hpp b/src/settings.hpp index 1204512e..165dcbec 100644 --- a/src/settings.hpp +++ b/src/settings.hpp @@ -36,7 +36,7 @@ struct ChunksSettings { /// @brief Max milliseconds that engine uses for chunks loading only IntegerSetting loadSpeed {4, 1, 32}; /// @brief Radius of chunks loading zone (chunk is unit) - IntegerSetting loadDistance {22, 3, 66}; + IntegerSetting loadDistance {22, 3, 80}; /// @brief Buffer zone where chunks are not unloading (chunk is unit) IntegerSetting padding {2, 1, 8}; };