Update init.lua

adding dofile for compressor recipe
This commit is contained in:
Diablosxm 2023-05-19 23:30:38 -04:00 committed by GitHub
parent ea677c5a1b
commit 9188b70438
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 2 deletions

View File

@ -144,7 +144,9 @@ if nether.NETHER_REALM_ENABLED then
end
end
dofile(nether.path .. "/portal_examples.lua")
if minetest.get_modpath("technic") then
dofile(nether.path .. "/nether-compressor-recipe.lua")
end
-- Portals are ignited by right-clicking with a mese crystal fragment
nether.register_portal_ignition_item(
@ -345,4 +347,4 @@ minetest.register_on_dieplayer(
)
end
end
)
)