From fddd7f761176bb45cfdd41eeccaeadac22d33ddf Mon Sep 17 00:00:00 2001 From: untodesu Date: Wed, 19 Mar 2025 18:07:51 +0500 Subject: Fix things and improve worldgen - Client-side now actually deletes invisible chunks - Improved world generation to use a second noise generator alongside changing how caves are generated (ie what noise they use) --- game/server/overworld.hh | 2 ++ 1 file changed, 2 insertions(+) (limited to 'game/server/overworld.hh') diff --git a/game/server/overworld.hh b/game/server/overworld.hh index 78844ce..2f7b67e 100644 --- a/game/server/overworld.hh +++ b/game/server/overworld.hh @@ -45,9 +45,11 @@ private: emhash8::HashMap m_metamap; private: + fnl_state m_fnl_variation; fnl_state m_fnl_terrain; fnl_state m_fnl_caves_a; fnl_state m_fnl_caves_b; + fnl_state m_fnl_nvdi; private: Feature m_feat_tree; -- cgit