From 23e5a1c7d3124077d80659d7de508c4f9bc80615 Mon Sep 17 00:00:00 2001
From: cora <coradelamouche@gmx.ch>
Date: Thu, 28 Apr 2022 01:00:52 +0200
Subject: [PATCH] Comment out ore generation for now

The discussion about how to handle this is still ongoing. Since
this is about getting the new nodes disable ore registration
for now.
---
 mods/ITEMS/mcl_blackstone/init.lua | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/mods/ITEMS/mcl_blackstone/init.lua b/mods/ITEMS/mcl_blackstone/init.lua
index fa25b8f59..31ebc14e6 100644
--- a/mods/ITEMS/mcl_blackstone/init.lua
+++ b/mods/ITEMS/mcl_blackstone/init.lua
@@ -362,7 +362,7 @@ minetest.register_craft({
 	recipe = 'mcl_nether:quartz_block',
 	cooktime = 10,
 })
-
+--[[ Commented out for now because there the discussion how to handle this is ongoing]
 --Generating
 local specialstones = { "mcl_blackstone:blackstone", "mcl_blackstone:basalt", "mcl_blackstone:soul_soil" }
 for s=1, #specialstones do
@@ -421,7 +421,7 @@ if minetest.settings:get_bool("mcl_generate_ores", true) then
 		y_max          = mcl_vars.mg_nether_max,
 	})
 end
-
+--]]
 --soul torch
 mcl_torches.register_torch({
 	name="soul_torch",