From 78bee21a82883fdbf07793d6c30d2a3978e71358 Mon Sep 17 00:00:00 2001 From: Brandon Date: Tue, 28 Jul 2020 17:02:43 -0400 Subject: [PATCH] Allow dragon's breath to stack to 64 --- mods/ITEMS/mcl_potions/potions.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/ITEMS/mcl_potions/potions.lua b/mods/ITEMS/mcl_potions/potions.lua index bfbb7c124..402b9a1d4 100644 --- a/mods/ITEMS/mcl_potions/potions.lua +++ b/mods/ITEMS/mcl_potions/potions.lua @@ -111,7 +111,7 @@ local function register_potion(def) _tt_help = get_tt(def._tt, def.effect, dur), _doc_items_longdesc = def._longdesc, _doc_items_usagehelp = how_to_drink, - stack_max = 1, + stack_max = def.stack_max or 1, inventory_image = def.image or potion_image(def.color), wield_image = def.image or potion_image(def.color), groups = def.groups or {brewitem=1, food=3, can_eat_when_full=1, not_in_creative_inventory=0},