- Duke: WEATHERWARN needs a statnum change on init so that it teleports.

This commit is contained in:
Christoph Oelckers 2023-06-07 23:11:43 +02:00
parent d8e852fe10
commit 5ac05971d2
2 changed files with 21 additions and 0 deletions

View file

@ -456,6 +456,7 @@ spawnclasses
4427 = DukeHotMeat
4340 = DukeLavaBubble
2563 = DukeHandHoldingLaser
4893 = DukeWeatherWarn, noskill
1405 = DukePlayerPawn, noskill

View file

@ -374,3 +374,23 @@ class DukeSeriousSam : DukeActor
}
}
//---------------------------------------------------------------------------
//
//
//
//---------------------------------------------------------------------------
class DukeWeatherWarn : DukeActor
{
default
{
pic "WEATHERWARN";
}
override void Initialize(DukeActor spawner)
{
self.ChangeStat(STAT_ACTOR);
}
}