mirror of
https://github.com/ZDoom/gzdoom.git
synced 2025-01-19 08:01:50 +00:00
- Fixed: RunScript() ignored the always parameter.
SVN r3539 (trunk)
This commit is contained in:
parent
4d6447a55b
commit
1e63d07f1b
1 changed files with 1 additions and 1 deletions
|
@ -2497,7 +2497,7 @@ static void RunScript(BYTE **stream, APlayerPawn *pawn, int snum, int argn, int
|
||||||
arg[i] = argval;
|
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)
|
void Net_SkipCommand (int type, BYTE **stream)
|
||||||
|
|
Loading…
Reference in a new issue