mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-12 07:34:50 +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)
|
DEFINE_PROPERTY(telefogsourcetype, S, Actor)
|
||||||
{
|
{
|
||||||
PROP_STRING_PARM(str, 0);
|
PROP_STRING_PARM(str, 0);
|
||||||
if (!stricmp(str, "TeleportFog")) defaults->TeleFogSourceType = NAME_None;
|
if (str == NULL) defaults->TeleFogSourceType = "TeleportFog";
|
||||||
else defaults->TeleFogSourceType = str;
|
else defaults->TeleFogSourceType = str;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1432,8 +1432,8 @@ DEFINE_PROPERTY(telefogsourcetype, S, Actor)
|
||||||
DEFINE_PROPERTY(telefogdesttype, S, Actor)
|
DEFINE_PROPERTY(telefogdesttype, S, Actor)
|
||||||
{
|
{
|
||||||
PROP_STRING_PARM(str, 0);
|
PROP_STRING_PARM(str, 0);
|
||||||
if (!stricmp(str, "TeleportFog")) defaults->TeleFogDestType = NAME_None;
|
if (str == NULL) defaults->TeleFogSourceType = "TeleportFog";
|
||||||
else defaults->TeleFogDestType = str;
|
defaults->TeleFogDestType = str;
|
||||||
}
|
}
|
||||||
|
|
||||||
//==========================================================================
|
//==========================================================================
|
||||||
|
|
Loading…
Reference in a new issue