mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-11 07:12:16 +00:00
- fixed: Initialization of spawn IDs from MAPINFO and DECORATE was in the wrong order. (looks like a badly resolved merging conflict)
This commit is contained in:
parent
584147b8bb
commit
34255908b0
1 changed files with 2 additions and 1 deletions
|
@ -2481,8 +2481,9 @@ void D_DoomMain (void)
|
|||
FinishDehPatch();
|
||||
|
||||
InitActorNumsFromMapinfo();
|
||||
PClassActor::StaticSetActorNums ();
|
||||
InitSpawnablesFromMapinfo();
|
||||
PClassActor::StaticSetActorNums();
|
||||
|
||||
//Added by MC:
|
||||
bglobal.getspawned.Clear();
|
||||
argcount = Args->CheckParmList("-bots", &args);
|
||||
|
|
Loading…
Reference in a new issue