From: paramat Date: Wed, 15 Nov 2017 23:52:31 +0000 (+0000) Subject: Biome dust node: Only place on 'walkable' cubic non-liquid drawtypes X-Git-Tag: 0.4.17~53 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=a90c314c80b87abbaa7668a55bc0d1194dd0920f;p=oweals%2Fminetest.git Biome dust node: Only place on 'walkable' cubic non-liquid drawtypes No longer decide placement on 'buildable_to' parameter. Dust nodes only look acceptable placed on cubic nodes. Modders may not want to make their plantlike decorations 'buildable_to'. --- diff --git a/src/mapgen.cpp b/src/mapgen.cpp index 1aa3be302..f4165f5cd 100644 --- a/src/mapgen.cpp +++ b/src/mapgen.cpp @@ -809,7 +809,16 @@ void MapgenBasic::dustTopNodes() } content_t c = vm->m_data[vi].getContent(); - if (!ndef->get(c).buildable_to && c != CONTENT_IGNORE && c != biome->c_dust) { + NodeDrawType dtype = ndef->get(c).drawtype; + // Only place on walkable cubic non-liquid nodes + // Dust check needed due to vertical overgeneration + if ((dtype == NDT_NORMAL || + dtype == NDT_ALLFACES_OPTIONAL || + dtype == NDT_GLASSLIKE_FRAMED_OPTIONAL || + dtype == NDT_GLASSLIKE || + dtype == NDT_GLASSLIKE_FRAMED || + dtype == NDT_ALLFACES) && + ndef->get(c).walkable && c != biome->c_dust) { vm->m_area.add_y(em, vi, 1); vm->m_data[vi] = MapNode(biome->c_dust); }