1
0
mirror of https://github.com/minetest-mods/technic.git synced 2025-05-21 02:10:37 +02:00

More optomization

This commit is contained in:
James David Clarke 2023-12-20 14:34:00 +00:00
parent fe30259604
commit 35dbebb380
No known key found for this signature in database
GPG Key ID: 9F5ECFD0E20F1C4C

@ -62,6 +62,12 @@ else
granite_bricks_ingrediant = 'technic:granite_bricks'
end
coal_ingrediant = nil
if minetest.get_modpath("mcl_core") then
coal_ingrediant = "group:coal"
else
coal_ingrediant = "default:coal_lump"
end
technic = rawget(_G, "technic") or {}
technic.chests = {}