From 9188b70438ea6c8c8d6afc6efffa468321f0bf32 Mon Sep 17 00:00:00 2001 From: Diablosxm <132860646+Diablosxm@users.noreply.github.com> Date: Fri, 19 May 2023 23:30:38 -0400 Subject: [PATCH] Update init.lua adding dofile for compressor recipe --- init.lua | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/init.lua b/init.lua index 2251be9..9f8116e 100644 --- a/init.lua +++ b/init.lua @@ -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 -) \ No newline at end of file +)