- Added support for Risen3D/PrBoom+'s MUSINFO lump.

SVN r2366 (trunk)
This commit is contained in:
Christoph Oelckers 2010-06-13 08:47:38 +00:00
commit 4d86ebddf9
6 changed files with 97 additions and 3 deletions

View file

@ -4290,6 +4290,11 @@ AActor *P_SpawnMapThing (FMapThing *mthing, int position)
mthing->args[0] = mthing->type - 14000;
mthing->type = 14065;
}
else if (mthing->type >= 14101 && mthing->type <= 14164)
{
mthing->args[0] = mthing->type - 14100;
mthing->type = 14165;
}
// find which type to spawn
i = DoomEdMap.FindType (mthing->type);