summaryrefslogtreecommitdiff
path: root/init.lua
diff options
context:
space:
mode:
Diffstat (limited to 'init.lua')
-rw-r--r--init.lua11
1 files changed, 11 insertions, 0 deletions
diff --git a/init.lua b/init.lua
index 1e2fa51..87423bc 100644
--- a/init.lua
+++ b/init.lua
@@ -364,3 +364,14 @@ for i in ipairs(plasticbox.colorlist) do
end
end
+
+--Other mods' stuff that can be crafted with plastic
+if minetest.get_modpath("bucket") then
+minetest.register_craft( {
+ output = "bucket:bucket_empty",
+ recipe = {
+ { "homedecor:plastic_sheeting", "", "homedecor:plastic_sheeting" },
+ { "", "homedecor:plastic_sheeting", "" },
+ },
+})
+end