- added Gez's fix for timing of the boss cube while a time freezer is active.
SVN r3118 (trunk)
This commit is contained in:
parent
f942cd0bf3
commit
07eed2f2be
3 changed files with 12 additions and 0 deletions
|
|
@ -2750,6 +2750,11 @@ void AActor::Tick ()
|
|||
//Added by MC: Freeze mode.
|
||||
if (bglobal.freeze || level.flags2 & LEVEL2_FROZEN)
|
||||
{
|
||||
// Boss cubes shouldn't be accelerated by timefreeze
|
||||
if (flags6 & MF6_BOSSCUBE)
|
||||
{
|
||||
special2++;
|
||||
}
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
|
@ -2780,6 +2785,11 @@ void AActor::Tick ()
|
|||
|
||||
if (!(flags5 & MF5_NOTIMEFREEZE))
|
||||
{
|
||||
// Boss cubes shouldn't be accelerated by timefreeze
|
||||
if (flags6 & MF6_BOSSCUBE)
|
||||
{
|
||||
special2++;
|
||||
}
|
||||
//Added by MC: Freeze mode.
|
||||
if (bglobal.freeze && !(player && !player->isbot))
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue