raze/wadsrc/static/zscript/games/duke/actors/redneckmisc.zs
Christoph Oelckers a6a4e628df - scriptified RRRA's gambling machines.
These were fallout from the generic destructibles because the code to destroy them was removed along with that.
2022-12-11 19:43:46 +01:00

13 lines
No EOL
141 B
Text

class RedneckBell : DukeActor
{
default
{
pic "BIGBELL";
}
override void OnHit(DukeActor proj)
{
self.PlayActorSound("BELL");
}
}