From fe249bb6eb99002c0d09f7593252ddc8f85e804c Mon Sep 17 00:00:00 2001 From: Kiri Date: Sat, 9 Sep 2023 17:49:43 -0700 Subject: [PATCH] Made frag counter batteries last longer. --- zscript/gretchencounter.zs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zscript/gretchencounter.zs b/zscript/gretchencounter.zs index 97bfc30..2d03f19 100644 --- a/zscript/gretchencounter.zs +++ b/zscript/gretchencounter.zs @@ -84,7 +84,7 @@ class GretchenCounter : HDWeapon weaponstatus[KGC_BATTERY] > 0) { // Discharge rate: 1/1000 chance per tick. - int r = random(0, 4000); + int r = random(0, 16000); if(r < 2) { weaponstatus[KGC_BATTERY] -= 1; }