From dfcc59d218babbaa6c5daa690b8724c353823934 Mon Sep 17 00:00:00 2001 From: DBotThePony Date: Mon, 22 Apr 2024 20:50:20 +0700 Subject: [PATCH] Fix grass being buried under tiles --- .../dbotthepony/kstarbound/server/world/ServerChunk.kt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main/kotlin/ru/dbotthepony/kstarbound/server/world/ServerChunk.kt b/src/main/kotlin/ru/dbotthepony/kstarbound/server/world/ServerChunk.kt index 99402ee2..52f04026 100644 --- a/src/main/kotlin/ru/dbotthepony/kstarbound/server/world/ServerChunk.kt +++ b/src/main/kotlin/ru/dbotthepony/kstarbound/server/world/ServerChunk.kt @@ -195,16 +195,16 @@ class ServerChunk(world: ServerWorld, pos: ChunkPos) : Chunk { CompletableFuture.runAsync(Runnable { finalizeCells() }, Starbound.EXECUTOR).await() - // skip if we have no layout - if (world.template.worldLayout != null) { - placeGrass() - } - // skip if we have no layout, or it is a floating dungeon world if (world.template.worldLayout != null && world.template.worldParameters !is FloatingDungeonWorldParameters) { placeBiomeItems() } + // skip if we have no layout + if (world.template.worldLayout != null) { + placeGrass() + } + signalChunkContentsUpdated() }