From 79426c028be5711b05e5cb7df6674b0b1f97bb92 Mon Sep 17 00:00:00 2001 From: Kevin Caccamo Date: Mon, 8 Jun 2020 07:53:47 -0400 Subject: [PATCH] Fix Bag of Holding not increasing Firemace ammo capacity --- wadsrc/static/zscript/actors/heretic/hereticammo.zs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wadsrc/static/zscript/actors/heretic/hereticammo.zs b/wadsrc/static/zscript/actors/heretic/hereticammo.zs index 1c5aeb88ad..6464cf9dca 100644 --- a/wadsrc/static/zscript/actors/heretic/hereticammo.zs +++ b/wadsrc/static/zscript/actors/heretic/hereticammo.zs @@ -85,7 +85,7 @@ Class MaceAmmo : Ammo Inventory.Amount 20; Inventory.MaxAmount 150; Ammo.BackpackAmount 0; - Ammo.BackpackMaxAmount 150; + Ammo.BackpackMaxAmount 300; Inventory.Icon "INAMLOB"; Tag "$AMMO_MACE"; }