fixed Vacation's beach ball.

This commit is contained in:
Christoph Oelckers 2023-05-14 12:41:20 +02:00
parent 513de38723
commit 3f9f1be3a8
3 changed files with 9 additions and 2 deletions

View file

@ -2,7 +2,7 @@
spawnclasses
{
2165 = VacationBeachBabe
2400 = VacationBeachBall
3400 = VacationBeachBall
1312 = VacationBeachBather
2120 = VacationDragon
1638 = VacationSeagullShit

View file

@ -1035,7 +1035,7 @@
// Vacation's required sprite names
2165 = "BEACHBABE"
2400 = "BEACHBALL"
3400 = "BEACHBALL"
1312 = "BEACHBATHER"
2120 = "DRAGON"
1638 = "SEAGULLSHIT"

View file

@ -9,4 +9,11 @@ class VacationBeachBall : DukeActor
Strength WEAK;
}
override void Initialize(DukeActor spawner)
{
self.cstat |= CSTAT_SPRITE_BLOCK_ALL;
self.clipdist = 32;
self.ChangeStat(STAT_ACTOR);
}
}