mirror of
https://github.com/ZDoom/Raze.git
synced 2024-12-12 13:41:48 +00:00
513de38723
Using ownerActor is not robust, for some actors this will have unwanted side effects.
20 lines
282 B
Text
20 lines
282 B
Text
|
|
class DukeBlimp : DukeActor
|
|
{
|
|
const BLIMPRESPAWNTIME = 2048;
|
|
|
|
default
|
|
{
|
|
pic "BLIMP";
|
|
Strength 1;
|
|
+SPAWNWEAPONDEBRIS;
|
|
}
|
|
|
|
override void Initialize(DukeActor spawner)
|
|
{
|
|
self.cstat |= CSTAT_SPRITE_BLOCK_ALL;
|
|
self.clipdist = 32;
|
|
self.ChangeStat(STAT_ACTOR);
|
|
}
|
|
|
|
}
|