From a424ccaa395cff7bf9558fd2478ad1c434292c68 Mon Sep 17 00:00:00 2001 From: jenz Date: Tue, 19 Dec 2023 20:18:35 +0100 Subject: [PATCH] fixing underscores lost by discord formatting --- src/zr/infect.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/zr/infect.inc b/src/zr/infect.inc index d204b95..81cd77e 100644 --- a/src/zr/infect.inc +++ b/src/zr/infect.inc @@ -753,9 +753,9 @@ public Action:InfectMotherZombie(Handle:timer) // Infect player. if (eligibleclients) { - new randindex = MathGetRandomInt(0, eligibleclients - 1); + new randindex = Math_GetRandomInt(0, eligibleclients - 1); new client = GetArrayCell(arrayEligibleClients, randindex); - if (InfectHumanToZombie(client, , true)) + if (InfectHumanToZombie(client, _, true)) { infected++; }