mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-24 21:11:26 +00:00
15 lines
196 B
Text
15 lines
196 B
Text
class DukeToiletWater : DukeActor
|
|
{
|
|
default
|
|
{
|
|
pic "TOILETWATER";
|
|
+FORCERUNCON;
|
|
+NOTELEPORT;
|
|
}
|
|
|
|
override void Initialize()
|
|
{
|
|
self.shade = -16;
|
|
self.changeStat(STAT_STANDABLE);
|
|
}
|
|
}
|