mirror of
https://github.com/ZDoom/Raze.git
synced 2025-04-04 06:55:48 +00:00
- Duke: fixed scale default for non-ememies.
This commit is contained in:
parent
49c23eb4e5
commit
58ee80564b
1 changed files with 5 additions and 0 deletions
|
@ -258,6 +258,11 @@ class DukeActor : CoreActor native
|
|||
{
|
||||
if (!self.mapSpawned) self.lotag = 0;
|
||||
|
||||
if (self.scale.X == 0 || self.scale.Y == 0)
|
||||
{
|
||||
self.scale = (REPEAT_SCALE, REPEAT_SCALE);
|
||||
}
|
||||
|
||||
if (self.lotag > ud.player_skill)
|
||||
{
|
||||
self.scale = (0, 0);
|
||||
|
|
Loading…
Reference in a new issue