Skip to content

Commit

Permalink
fixed not enough zombies message
Browse files Browse the repository at this point in the history
  • Loading branch information
Hedgefog committed Feb 23, 2021
1 parent d5dd5fe commit 8e4d81e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scripts/core/zp_gamerules.sma
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ DistributeTeams() {
new iRequiredZombieCount = floatround(float(pPlayerCount) / PLAYERS_PER_ZOMBIE, floatround_ceil);
if (iZombieCount < iRequiredZombieCount) {
if (pPlayerCount > 1) {
log_amx("No one has chosen play zombie, a random player will be moved to the zombie team...");
log_amx("Not enough zombies, a random players will be moved to the zombie team...");

new iCount = iRequiredZombieCount - iZombieCount;
for (new i = 0; i < iCount; ++i) {
Expand Down

0 comments on commit 8e4d81e

Please sign in to comment.