mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-30 07:50:54 +00:00
14 lines
216 B
Text
14 lines
216 B
Text
class DukeNaturalLightning : DukeActor
|
|
{
|
|
default
|
|
{
|
|
pic "NATURALLIGHTNING";
|
|
+FULLBRIGHT;
|
|
}
|
|
|
|
override void Initialize()
|
|
{
|
|
self.cstat &= ~CSTAT_SPRITE_BLOCK_ALL;
|
|
self.cstat |= CSTAT_SPRITE_INVISIBLE;
|
|
}
|
|
}
|