- fixeed: Sound sequence overrides took the parameter from the wrong data structure.

This commit is contained in:
Christoph Oelckers 2015-04-26 08:48:49 +02:00
parent b9fdc21547
commit 46e975418d

View file

@ -4749,7 +4749,7 @@ AActor *P_SpawnMapThing (FMapThing *mthing, int position)
// [RH] sound sequence overriders
if (mentry->Type == NULL && mentry->Special == SMT_SSeqOverride)
{
int type = mentry->Args[0];
int type = mthing->args[0];
if (type == 255) type = -1;
if (type > 63)
{