1
0
mirror of https://github.com/mt-mods/basic_materials.git synced 2025-01-11 18:40:26 +01:00

if statement bugfix

This commit is contained in:
unknown 2022-02-27 11:27:49 -05:00
parent 29ade1253a
commit d14a1b4e52

View File

@ -75,7 +75,9 @@ elseif minetest.get_modpath("hades_core") then
--set this to steel unless hadesextraores is present --set this to steel unless hadesextraores is present
silver_ingot = "hades_core:steel_ingot", silver_ingot = "hades_core:steel_ingot",
} }
elseif minetest.get_modpath("hades_core") and minetest.get_modpath("hades_extraores") then end
if minetest.get_modpath("hades_core") and minetest.get_modpath("hades_extraores") then
materials["silver_ingot"] = "hades_extraores:silver_ingot" materials["silver_ingot"] = "hades_extraores:silver_ingot"
end end