Renamed some sprites for compatibility with Smooth Doom.

Added water step/land sounds.
Made footsteps toggleable (in case the player is using another mod that adds them).
Added handling of liquid terrain on all actors that need it.
Fixed dual enforcers breaking after level transition.
Fixed some refire issues caused by the use of the Resurrect cheat.
Made guided redeemer missiles explode on player death.
Replaced pure particles on pulse gun effects with actor particles.
This commit is contained in:
Marisa the Magician 2018-06-01 17:49:49 +02:00
commit 71b194c6c3
52 changed files with 182 additions and 41 deletions

View file

@ -127,6 +127,9 @@ Class TranslocatorModule : Actor
+SKYEXPLODE;
+HITTRACER;
+MOVEWITHSECTOR;
+CANBOUNCEWATER;
-BOUNCEAUTOOFF;
+BOUNCEAUTOOFFFLOORONLY;
BounceType "Doom";
BounceFactor 0.5;
WallBounceFactor 0.5;
@ -354,6 +357,12 @@ Class Translocator : UTWeapon
}
}
override void OnDestroy()
{
Super.OnDestroy();
if ( module ) module.Destroy();
}
Default
{
Tag "Translocator";