mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-24 21:11:26 +00:00
26 lines
381 B
Text
26 lines
381 B
Text
class DukeOctabrain : DukeActor
|
|
{
|
|
default
|
|
{
|
|
pic "OCTABRAIN";
|
|
}
|
|
|
|
override void PlayFTASound()
|
|
{
|
|
self.PlayActorSound("OCTA_RECOG");
|
|
}
|
|
}
|
|
|
|
class DukeOctabrainStayput: DukeOctabrain
|
|
{
|
|
default
|
|
{
|
|
pic "OCTABRAINSTAYPUT";
|
|
}
|
|
|
|
override void initialize()
|
|
{
|
|
super.initialize();
|
|
self.actorstayput = self.sector; // make this a flag once everything has been exported.
|
|
}
|
|
}
|