From 97b9170653a4acf9466b4400b7efd1aa4e2e7772 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Brada?= Date: Sat, 18 Apr 2015 16:48:35 +0200 Subject: [PATCH] Fix weirid sand layers caused by shore-thing of MGv7 --- sed.lua | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/sed.lua b/sed.lua index 3f4a802..702aa29 100644 --- a/sed.lua +++ b/sed.lua @@ -65,6 +65,13 @@ do def.node_filler="rocks:mudstone" def.depth_filler=11 end + -- deactivate the added and removed shore-thing of MGv7 + -- to fix weirid sand layers underground + if btype=="lowland" then -- fixme: does this affect beach/ocean too? + def.node_shore_top=def.node_top + def.node_shore_filler=def.node_filler + def.node_underwater=def.node_filler + end -- and call the saved method to actually do the registration old_register_biome(def) end