mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-15 00:42:08 +00:00
- Duke: fix some weirdness with item spawning.
This commit is contained in:
parent
22415d0d22
commit
fc30f76f50
1 changed files with 2 additions and 2 deletions
|
@ -424,8 +424,8 @@ class DukeActor : CoreActor native
|
|||
}
|
||||
|
||||
self.clipdist = 10;
|
||||
if (self.ownerActor == null) self.ownerActor = self;
|
||||
else self.angle = self.ownerActor.angle;
|
||||
if (self.ownerActor != null) self.angle = self.ownerActor.angle;
|
||||
self.ownerActor = self;
|
||||
self.ChangeStat(STAT_ACTOR);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue