- Added a NOTIMEFREEZE flag that excludes actors from being affected by
the time freezer powerup. - Changed: Empty pickup messages are no longer printed. SVN r886 (trunk)
This commit is contained in:
parent
c5333d4abb
commit
d938121378
6 changed files with 21 additions and 11 deletions
|
|
@ -2573,16 +2573,19 @@ void AActor::Tick ()
|
|||
return;
|
||||
}
|
||||
|
||||
//Added by MC: Freeze mode.
|
||||
if (bglobal.freeze && !(player && !player->isbot))
|
||||
if (!(flags5 & MF5_NOTIMEFREEZE))
|
||||
{
|
||||
return;
|
||||
}
|
||||
//Added by MC: Freeze mode.
|
||||
if (bglobal.freeze && !(player && !player->isbot))
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
// Apply freeze mode.
|
||||
if (( level.flags & LEVEL_FROZEN ) && ( player == NULL || !( player->cheats & CF_TIMEFREEZE )))
|
||||
{
|
||||
return;
|
||||
// Apply freeze mode.
|
||||
if (( level.flags & LEVEL_FROZEN ) && ( player == NULL || !( player->cheats & CF_TIMEFREEZE )))
|
||||
{
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
if (cl_rockettrails & 2)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue