mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2025-01-31 12:30:32 +00:00
Removed stricmp checks, as they're not needed.
This commit is contained in:
parent
f9e70a82c6
commit
2731643200
1 changed files with 1 additions and 4 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
//===========================================================================
|
||||
|
|
Loading…
Reference in a new issue