From 9f186a169f048a800ddcc0439eca08bdaa09b77a Mon Sep 17 00:00:00 2001 From: JoeEnderman <76822001+JoeEnderman@users.noreply.github.com> Date: Sat, 22 Apr 2023 16:04:56 -0500 Subject: [PATCH] fix nether mushrooms not spawning --- mapgen_decorations.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mapgen_decorations.lua b/mapgen_decorations.lua index 519412b..09b6ae9 100644 --- a/mapgen_decorations.lua +++ b/mapgen_decorations.lua @@ -47,9 +47,9 @@ local S1 = {name = "stairs:stair_netherrack", prob = 255, force_place = true, pa local S2 = {name = "stairs:stair_netherrack", prob = 255, force_place = true, param2 = 7} local S3 = {name = "stairs:stair_netherrack", prob = 255, force_place = true, param2 = 12} local S4 = {name = "stairs:stair_netherrack", prob = 255, force_place = true, param2 = 16} -local M1 = {name = "nether:hinge", prob = 255} -local M2 = {name = "nether:hinge_growing", prob = 255} -local M3 = {name = "nether:hinge_glow", prob = 255} +local H1 = {name = "nether:hinge", prob = 255} +local H2 = {name = "nether:hinge_growing", prob = 255} +local H3 = {name = "nether:hinge_glowing", prob = 255} -- =================