mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-28 06:53:29 +00:00
30 lines
443 B
Text
30 lines
443 B
Text
class DukeCommander : DukeActor
|
|
{
|
|
default
|
|
{
|
|
pic "COMMANDER";
|
|
+INTERNAL_BADGUY;
|
|
+KILLCOUNT;
|
|
+NOWATERDIP;
|
|
+FLOATING;
|
|
}
|
|
|
|
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.
|
|
}
|
|
}
|