From 12efe53d1c4284d2e5e063d4c4d8f84cc2a54540 Mon Sep 17 00:00:00 2001 From: Ombridride Date: Sun, 15 Feb 2015 22:05:55 +0100 Subject: [PATCH] Tweak the "throwing:arrow" craft Now the stack max is set to 200, enjoy your quiver ! --- mods/throwing/arrow.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mods/throwing/arrow.lua b/mods/throwing/arrow.lua index 8f5c041e..c6c2a784 100755 --- a/mods/throwing/arrow.lua +++ b/mods/throwing/arrow.lua @@ -85,6 +85,7 @@ minetest.register_entity("throwing:arrow_entity", THROWING_ARROW_ENTITY) minetest.register_craft({ output = "throwing:arrow 8", + stack_max = 200, recipe = { {"default:stick", "default:stick", "group:ingot"}, } @@ -92,6 +93,7 @@ minetest.register_craft({ minetest.register_craft({ output = "throwing:arrow 8", + stack_max = 200, recipe = { {"group:ingot", "default:stick", "default:stick"}, }