From ba4fabc41083ac078b0159063fdcbafbbc2ec3cb Mon Sep 17 00:00:00 2001 From: Marisa the Magician Date: Wed, 9 Nov 2022 21:19:20 +0100 Subject: [PATCH] Jump boots didn't clear counters when replaced. --- zscript/upowerups.zsc | 1 + 1 file changed, 1 insertion(+) diff --git a/zscript/upowerups.zsc b/zscript/upowerups.zsc index 61a95e0..65a3f2d 100644 --- a/zscript/upowerups.zsc +++ b/zscript/upowerups.zsc @@ -313,6 +313,7 @@ Class UJumpBoots : UnrealInventory r.target = target; r.tracer = tracer; r.bDropped = bDropped; + ClearCounters(); // DO NOT FORGET THIS Destroy(); } }