mirror of
https://github.com/ZDoom/Raze.git
synced 2025-03-13 20:42:11 +00:00
- fixed locked activator setup.
This broke all locked doors.
This commit is contained in:
parent
229ee3dbe4
commit
aa3df50f9b
1 changed files with 2 additions and 2 deletions
|
@ -84,8 +84,8 @@ class DukeActivatorLocked : DukeActor
|
|||
override void Initialize()
|
||||
{
|
||||
self.cstat = CSTAT_SPRITE_INVISIBLE;
|
||||
if (!Raze.IsRR()) self.lotag |= 16384;
|
||||
else self.lotag ^= 16384;
|
||||
if (!Raze.IsRR()) self.sector.lotag |= 16384;
|
||||
else self.sector.lotag ^= 16384;
|
||||
}
|
||||
|
||||
/* must wait until Activator.onActivate can be done.
|
||||
|
|
Loading…
Reference in a new issue