diff --git a/technic_cnc/cnc_materials.lua b/technic_cnc/cnc_materials.lua index c818dfb..bc6e4aa 100644 --- a/technic_cnc/cnc_materials.lua +++ b/technic_cnc/cnc_materials.lua @@ -82,12 +82,12 @@ technic_cnc.register_all("default:cobble", {"default_cobble.png"}, S("Cobble")) -technic.cnc.register_all("default:mossycobble", +technic_cnc.register_all("default:mossycobble", {cracky=3, stone=1, not_in_creative_inventory=1}, {"default_mossycobble.png"}, S("Mossy Cobblestone")) -technic.cnc.register_all("default:desert_cobble", +technic_cnc.register_all("default:desert_cobble", {cracky=3, stone=1, not_in_creative_inventory=1}, {"default_desert_cobble.png"}, S("Desert Cobble")) diff --git a/technic_cnc/init.lua b/technic_cnc/init.lua index 6ed7306..3c4da3e 100644 --- a/technic_cnc/init.lua +++ b/technic_cnc/init.lua @@ -15,5 +15,4 @@ end dofile(modpath.."/cnc.lua") dofile(modpath.."/cnc_api.lua") -dofile(modpath.."/cnc_nodes.lua") dofile(modpath.."/cnc_materials.lua")