raze/wadsrc/static/zscript/games/duke/actors/commander.zs
2023-04-07 11:52:53 +02:00

26 lines
381 B
Text

class DukeCommander : DukeActor
{
default
{
pic "COMMANDER";
}
override void PlayFTASound()
{
self.PlayActorSound("COMM_RECOG");
}
}
class DukeCommanderStayput: DukeCommander
{
default
{
pic "COMMANDERSTAYPUT";
}
override void initialize()
{
super.initialize();
self.actorstayput = self.sector; // make this a flag once everything has been exported.
}
}