Nscommands: remove an hardcoded value

This commit is contained in:
Freeman-AM 2014-10-11 18:13:08 +02:00
parent 7e9e2b7b58
commit 3776650a38

View File

@ -123,7 +123,7 @@ public client_connect(id) {
}
stock UTIL_FindCommander() {
new i=1;
while (i<32) {
while (i<MAX_PLAYERS) {
if (g_Class[i]==PLAYERCLASS_COMMANDER) // this player is comm..
return i;
i++;