From 83779274120a20e25a17e87d489ed958cacfc557 Mon Sep 17 00:00:00 2001 From: Randy Heit Date: Tue, 22 Sep 2009 01:16:54 +0000 Subject: [PATCH] - Apply BHS's ThingActivation patch. SVN r1862 (trunk) --- src/thingdef/thingdef_parse.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/thingdef/thingdef_parse.cpp b/src/thingdef/thingdef_parse.cpp index 039d578b4..a4bde9259 100644 --- a/src/thingdef/thingdef_parse.cpp +++ b/src/thingdef/thingdef_parse.cpp @@ -617,6 +617,10 @@ static bool ParsePropertyParams(FScanner &sc, FPropertyInfo *prop, AActor *defau case 'M': // special case. An expression-aware parser will not need this. conv.i = ParseMorphStyle(sc); break; + + case 'N': // special case. An expression-aware parser will not need this. + conv.i = ParseThingActivation(sc); + break; case 'L': // Either a number or a list of strings if (sc.CheckNumber())