raze/wadsrc/static/zscript/games/duke/actors/rrraenemies/bubbaelvis.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

19 lines
287 B
Text

class RedneckBubbaelvis : RedneckBubbaStand
{
default
{
pic "SBSWIPE";
+BADGUYSTAYPUT;
+INTERNAL_BADGUY;
+KILLCOUNT;
+BADGUYSTAYPUT;
Strength 100;
}
override void Initialize(DukeActor spawner)
{
self.scale = (0.390625, 0.328125);
self.setClipDistFromTile();
}
}