diff options
author | cheapie <no-email-for-you@example.com> | 2018-11-01 17:57:30 -0500 |
---|---|---|
committer | cheapie <no-email-for-you@example.com> | 2018-11-01 17:57:30 -0500 |
commit | 10cb913a7870dc06a0f7da1c400fbf1e59c0c2e9 (patch) | |
tree | ee7c9aef9a255441ac8626db22b6675c9545ed6d | |
parent | 49d7dc52f7cd4ee622fe60025f6b91e73895907b (diff) | |
download | plasticbox-10cb913a7870dc06a0f7da1c400fbf1e59c0c2e9.tar plasticbox-10cb913a7870dc06a0f7da1c400fbf1e59c0c2e9.tar.gz plasticbox-10cb913a7870dc06a0f7da1c400fbf1e59c0c2e9.tar.bz2 plasticbox-10cb913a7870dc06a0f7da1c400fbf1e59c0c2e9.tar.xz plasticbox-10cb913a7870dc06a0f7da1c400fbf1e59c0c2e9.zip |
Update craft recipes
-rw-r--r-- | init.lua | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -21,16 +21,16 @@ end minetest.register_craft( { output = "plasticbox:plasticbox 4", recipe = { - { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" }, - { "homedecor:plastic_sheeting", "", "homedecor:plastic_sheeting" }, - { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" } + { "basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" }, + { "basic_materials:plastic_sheet", "", "basic_materials:plastic_sheet" }, + { "basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" } }, }) unifieddyes.register_color_craft({ output = "plasticbox:plasticbox 4", palette = "extended", - neutral_node = "homedecor:plastic_sheeting", + neutral_node = "basic_materials:plastic_sheet", recipe = { { "NEUTRAL_NODE", "NEUTRAL_NODE", "NEUTRAL_NODE" }, { "NEUTRAL_NODE", "MAIN_DYE", "NEUTRAL_NODE" }, |