mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-11 15:22:15 +00:00
- Thought I was forgetting something.
This commit is contained in:
parent
30acb72006
commit
b255e5d67d
1 changed files with 3 additions and 3 deletions
|
@ -1422,7 +1422,7 @@ DEFINE_PROPERTY(stamina, I, Actor)
|
|||
DEFINE_PROPERTY(telefogsourcetype, S, Actor)
|
||||
{
|
||||
PROP_STRING_PARM(str, 0);
|
||||
if (!stricmp(str, "TeleportFog")) defaults->TeleFogSourceType = NAME_None;
|
||||
if (str == NULL) defaults->TeleFogSourceType = "TeleportFog";
|
||||
else defaults->TeleFogSourceType = str;
|
||||
}
|
||||
|
||||
|
@ -1432,8 +1432,8 @@ DEFINE_PROPERTY(telefogsourcetype, S, Actor)
|
|||
DEFINE_PROPERTY(telefogdesttype, S, Actor)
|
||||
{
|
||||
PROP_STRING_PARM(str, 0);
|
||||
if (!stricmp(str, "TeleportFog")) defaults->TeleFogDestType = NAME_None;
|
||||
else defaults->TeleFogDestType = str;
|
||||
if (str == NULL) defaults->TeleFogSourceType = "TeleportFog";
|
||||
defaults->TeleFogDestType = str;
|
||||
}
|
||||
|
||||
//==========================================================================
|
||||
|
|
Loading…
Reference in a new issue