raze/wadsrc/static/zscript/games/duke/actors/redneckenemies/dog.zs
Christoph Oelckers 513de38723 - pass the spawner to Initialize as an explicit parameter.
Using ownerActor is not robust, for some actors this will have unwanted side effects.
2023-05-19 22:57:26 +02:00

17 lines
228 B
Text

class RedneckDog : DukeActor
{
default
{
pic "DOGRUN";
+INTERNAL_BADGUY;
+KILLCOUNT;
Strength 200;
}
override void Initialize(DukeActor spawner)
{
self.scale = (0.25, 0.25);
self.setClipDistFromTile();
}
}