diff --git a/src/thingdef/thingdef_codeptr.cpp b/src/thingdef/thingdef_codeptr.cpp index f6b724747..377c4915b 100644 --- a/src/thingdef/thingdef_codeptr.cpp +++ b/src/thingdef/thingdef_codeptr.cpp @@ -5781,10 +5781,7 @@ DEFINE_ACTION_FUNCTION_PARAMS(AActor, A_SetSpecies) return; } - if (!stricmp(species, "None") || !stricmp(species, "")) - mobj->Species = NAME_None; - else - mobj->Species = species; + mobj->Species = species; } //===========================================================================