From 1e63d07f1b65abf2047ee078a7dbf79d13fdf0fa Mon Sep 17 00:00:00 2001 From: Randy Heit Date: Sun, 8 Apr 2012 04:48:47 +0000 Subject: [PATCH] - Fixed: RunScript() ignored the always parameter. SVN r3539 (trunk) --- src/d_net.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/d_net.cpp b/src/d_net.cpp index 03b2ea2a1..dbe07ccf5 100644 --- a/src/d_net.cpp +++ b/src/d_net.cpp @@ -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(countof(arg), argn), ACS_NET); + P_StartScript(pawn, NULL, snum, level.mapname, arg, MIN(countof(arg), argn), ACS_NET | always); } void Net_SkipCommand (int type, BYTE **stream)