From 067ad7b78bb6b595dd8200d93fa581aa94bedf35 Mon Sep 17 00:00:00 2001 From: JoseDouglas26 Date: Thu, 30 May 2024 08:31:15 +0000 Subject: [PATCH] Change stack size for snowballs and eggs (#4312) Reviewed-on: https://git.minetest.land/VoxeLibre/VoxeLibre/pulls/4312 Reviewed-by: the-real-herowl Co-authored-by: JoseDouglas26 Co-committed-by: JoseDouglas26 --- mods/ITEMS/mcl_throwing/register.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mods/ITEMS/mcl_throwing/register.lua b/mods/ITEMS/mcl_throwing/register.lua index 43dedd33b..3a91a18b9 100644 --- a/mods/ITEMS/mcl_throwing/register.lua +++ b/mods/ITEMS/mcl_throwing/register.lua @@ -293,7 +293,7 @@ minetest.register_craftitem("mcl_throwing:snowball", { _doc_items_longdesc = S("Snowballs can be thrown or launched from a dispenser for fun. Hitting something with a snowball does nothing."), _doc_items_usagehelp = how_to_throw, inventory_image = "mcl_throwing_snowball.png", - stack_max = 16, + stack_max = 64, groups = { weapon_ranged = 1 }, on_use = mcl_throwing.get_player_throw_function("mcl_throwing:snowball_entity"), _on_dispense = mcl_throwing.dispense_function, @@ -306,7 +306,7 @@ minetest.register_craftitem("mcl_throwing:egg", { _doc_items_longdesc = S("Eggs can be thrown or launched from a dispenser and breaks on impact. There is a small chance that 1 or even 4 chicks will pop out of the egg."), _doc_items_usagehelp = how_to_throw, inventory_image = "mcl_throwing_egg.png", - stack_max = 16, + stack_max = 64, on_use = mcl_throwing.get_player_throw_function("mcl_throwing:egg_entity"), _on_dispense = mcl_throwing.dispense_function, groups = { craftitem = 1 },