- Fixed: RunScript() ignored the always parameter.

SVN r3539 (trunk)
This commit is contained in:
Randy Heit 2012-04-08 04:48:47 +00:00
parent 4d6447a55b
commit 1e63d07f1b
1 changed files with 1 additions and 1 deletions

View File

@ -2497,7 +2497,7 @@ static void RunScript(BYTE **stream, APlayerPawn *pawn, int snum, int argn, int
arg[i] = argval;
}
}
P_StartScript(pawn, NULL, snum, level.mapname, arg, MIN<int>(countof(arg), argn), ACS_NET);
P_StartScript(pawn, NULL, snum, level.mapname, arg, MIN<int>(countof(arg), argn), ACS_NET | always);
}
void Net_SkipCommand (int type, BYTE **stream)