1.0.1 Release:

- Greatly improved responsiveness of Eightball.
 - Increase Betamag melee damage (15 → 25).
 - Reduce Demolisher visual sway.
 - Increase Razorclaw primary damage (6 → 10) and decrease interval (5 → 4).
 - Add random chance of forcing pain to each hit of Razorclaw primary (1/6 for bosses, 1/4 for normal enemies), making it a more viable melee weapon.
 - Razorclaw now propels you when fully submerged.
 - Fix Flame Gun not checking for the correct minimum ammo for secondary fire.
 - Replacements respect IsFinal.
 - HUD will display BasicArmor if available, for compatibility.
 - Fix alignment for non-standard item/ammo icons.
 - Fix Teleport Capsules having a choppy twiddle animation.
This commit is contained in:
Marisa the Magician 2019-10-28 10:54:51 +01:00
commit 08361babe6
10 changed files with 111 additions and 26 deletions

View file

@ -963,6 +963,7 @@ Class UnrealMainHandler : EventHandler
}
override void CheckReplacement( ReplaceEvent e )
{
if ( e.IsFinal ) return;
if ( (e.Replacee == 'Chainsaw') || (e.Replacee == 'Gauntlets') )
{
if ( ((sting_proto && sting_dubious) || sting_olsmp) && !Random[Replacements](0,sting_proto?3:1) ) e.Replacement = 'WeaponPowerUp';