From 65576833caa00dc3626f971e1c5881f35d89be5e Mon Sep 17 00:00:00 2001 From: Steam Deck User Date: Sat, 11 Mar 2023 18:54:40 -0500 Subject: [PATCH] SERVER: Increase chance of skipping Zombie Attack Delay from 20% per thought to 40% --- source/server/ai/zombie_core.qc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/server/ai/zombie_core.qc b/source/server/ai/zombie_core.qc index 8294b26..69ca66c 100644 --- a/source/server/ai/zombie_core.qc +++ b/source/server/ai/zombie_core.qc @@ -817,7 +817,7 @@ void(float which) zombie_attack_choose = if(which != 1) { - if(random() > 0.2) + if(random() > 0.4) { return; }