fixing underscores lost by discord formatting

This commit is contained in:
jenz 2023-12-19 20:18:35 +01:00 committed by zaCade
parent 111d7a7374
commit a424ccaa39

View File

@ -753,9 +753,9 @@ public Action:InfectMotherZombie(Handle:timer)
// Infect player. // Infect player.
if (eligibleclients) if (eligibleclients)
{ {
new randindex = MathGetRandomInt(0, eligibleclients - 1); new randindex = Math_GetRandomInt(0, eligibleclients - 1);
new client = GetArrayCell(arrayEligibleClients, randindex); new client = GetArrayCell(arrayEligibleClients, randindex);
if (InfectHumanToZombie(client, , true)) if (InfectHumanToZombie(client, _, true))
{ {
infected++; infected++;
} }