From 26bd78f7357595a782eb0eb3e40a122319ba17d5 Mon Sep 17 00:00:00 2001 From: Columbus240 Date: Sun, 4 Jun 2017 11:21:34 +0200 Subject: [PATCH] Make lava cooling compatible with bedrock mod The bedrock mod registered `bedrock:deepstone` and `bedrock:bedrock` as ores. Somehow having this mod installed made flowing lava only cool into deepstone, which breaks the game. This patch fixes it by preventing bedrock and deepstone from being created through lava cooling. --- additional_stuff/init.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/additional_stuff/init.lua b/additional_stuff/init.lua index 30770ea..c9623d2 100644 --- a/additional_stuff/init.lua +++ b/additional_stuff/init.lua @@ -129,8 +129,8 @@ end -- Lava cooling --- Exclude coal and diamond from being generated -additional_stuff.not_an_ore = {"default:stone_with_coal", "default:stone_with_diamond"} +-- Exclude bedrock, coal and diamond from being generated +additional_stuff.not_an_ore = {"default:stone_with_coal", "default:stone_with_diamond", "bedrock:deepstone", "bedrock:bedrock"} local function is_not_an_ore(ore_name) for _,no_ore in ipairs(additional_stuff.not_an_ore) do