View Issue Details

IDProjectCategoryView StatusLast Update
0000054Gameplay + OpenGL[All Projects] Bugpublic2017-01-15 16:59
ReporterMajor Cooke 
Assigned To 
PrioritynormalSeverityminorReproducibilityhave not tried
Status closedResolutionno change required 
Summary0000054: PowerBuddha affecting cheats instead of assigning BUDDHA
DescriptionGoing through the source code in ZScript, I found this:

-------------------------------------------------------------

    override void InitEffect ()
    {
        Super.InitEffect();

        if (Owner== null || Owner.player == null)
            return;

        Owner.player.cheats |= CF_BUDDHA;
    }

    override void EndEffect ()
    {
        Super.EndEffect();

        if (Owner== null || Owner.player == null)
            return;

        Owner.player.cheats &= ~CF_BUDDHA;
    }

------------------------------------------------------

Shouldn't it be Owner.bBUDDHA = true/false instead?
TagsNo tags attached.

Relationships

Activities

Graf Zahl

Graf Zahl

2017-01-15 16:58

administrator   ~0000091

No. That code is correct. It has always been this way and is the same for other comparable powers.

Issue History

Date Modified Username Field Change
2017-01-15 13:58 Major Cooke New Issue
2017-01-15 16:58 Graf Zahl Note Added: 0000091
2017-01-15 16:59 Graf Zahl Status new => closed
2017-01-15 16:59 Graf Zahl Resolution open => no change required