From e81d9714b24d887a189f241f7ac7546af4a6dd65 Mon Sep 17 00:00:00 2001 From: Vanessa Ezekowitz Date: Thu, 11 Oct 2012 23:10:34 -0400 Subject: [PATCH] changed junglegrass-based plastic recipe to use 3 grass and yield 6 plastic. Resolves a conflict with throwing mod. Dry shrubs changed also (3 yields 3 plastic) for consistency. --- crafts.lua | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/crafts.lua b/crafts.lua index 27fb9591..83261fb4 100644 --- a/crafts.lua +++ b/crafts.lua @@ -123,16 +123,18 @@ minetest.register_craftitem("homedecor:plastic_base", { minetest.register_craft({ type = "shapeless", - output = 'homedecor:plastic_base 4', + output = 'homedecor:plastic_base 6', recipe = { "default:junglegrass", + "default:junglegrass", "default:junglegrass" } }) minetest.register_craft({ type = "shapeless", - output = 'homedecor:plastic_base 2', + output = 'homedecor:plastic_base 3', recipe = { "default:dry_shrub", + "default:dry_shrub", "default:dry_shrub" }, })