mirror of
https://github.com/ZDoom/Raze.git
synced 2025-03-22 17:01:08 +00:00
fixed Vacation's beach ball.
This commit is contained in:
parent
513de38723
commit
3f9f1be3a8
3 changed files with 9 additions and 2 deletions
|
@ -2,7 +2,7 @@
|
|||
spawnclasses
|
||||
{
|
||||
2165 = VacationBeachBabe
|
||||
2400 = VacationBeachBall
|
||||
3400 = VacationBeachBall
|
||||
1312 = VacationBeachBather
|
||||
2120 = VacationDragon
|
||||
1638 = VacationSeagullShit
|
||||
|
|
|
@ -1035,7 +1035,7 @@
|
|||
|
||||
// Vacation's required sprite names
|
||||
2165 = "BEACHBABE"
|
||||
2400 = "BEACHBALL"
|
||||
3400 = "BEACHBALL"
|
||||
1312 = "BEACHBATHER"
|
||||
2120 = "DRAGON"
|
||||
1638 = "SEAGULLSHIT"
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in a new issue