From 0f8f2bbb98d4cee15aeed8903def6e71febbe487 Mon Sep 17 00:00:00 2001 From: Valentin Stark Date: Wed, 17 Aug 2022 19:00:34 +0200 Subject: [PATCH] Fill holes --- world/game.gd | 2 ++ 1 file changed, 2 insertions(+) diff --git a/world/game.gd b/world/game.gd index 790a8d5..0fb0553 100644 --- a/world/game.gd +++ b/world/game.gd @@ -36,6 +36,8 @@ func init_data(): fill_oceans() for point in terrain.get_points(): + if point.get_data("water") and not point.get_data("ocean"): + point.set_elevation(0.1) point.set_data("coast", point_is_coast(point)) if point.get_data("river"): set_river_path(point)