summaryrefslogtreecommitdiff
path: root/computer/miscitems.lua
diff options
context:
space:
mode:
Diffstat (limited to 'computer/miscitems.lua')
-rw-r--r--computer/miscitems.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/computer/miscitems.lua b/computer/miscitems.lua
index 5f63c7d..a750378 100644
--- a/computer/miscitems.lua
+++ b/computer/miscitems.lua
@@ -8,7 +8,7 @@ local S = homedecor_i18n.gettext
if (not minetest.get_modpath("homedecor")) then
- minetest.register_craftitem(":homedecor:plastic_sheeting", {
+ minetest.register_craftitem(":basic_materials:plastic_sheet", {
description = S("Plastic sheet"),
inventory_image = "homedecor_plastic_sheeting.png",
})
@@ -51,7 +51,7 @@ if (not minetest.get_modpath("homedecor")) then
minetest.register_craft({
type = "cooking",
- output = "homedecor:plastic_sheeting",
+ output = "basic_materials:plastic_sheet",
recipe = "homedecor:plastic_base",
})
@@ -63,7 +63,7 @@ if (not minetest.get_modpath("homedecor")) then
minetest.register_craft({
type = 'fuel',
- recipe = 'homedecor:plastic_sheeting',
+ recipe = 'basic_materials:plastic_sheet',
burntime = 30,
})