Release Candidate 2:

- Added option to toggle all beta content.
 - Added option to toggle armor bonuses (for purists).
 - Added cheap alternate allmap replacer, so there's something else to replace the computer map when the detector isn't allowed.
 - Small fixes and corrections.
This commit is contained in:
Marisa the Magician 2019-10-08 11:01:20 +02:00
commit 7051cb25be
35 changed files with 719 additions and 93 deletions

View file

@ -12,7 +12,7 @@ Class UTranslocatorAmmo : Ammo
override void Tick()
{
Super.Tick();
if ( sting_telegun ) return;
if ( sting_proto && sting_telegun ) return;
if ( Owner ) Owner.RemoveInventory(self);
Destroy();
}
@ -132,13 +132,13 @@ Class UTranslocator : UnrealWeapon
override bool TryPickup( in out Actor toucher )
{
if ( !sting_telegun ) return false; // not allowed
if ( !sting_proto || !sting_telegun ) return false; // not allowed
return Super.TryPickup(toucher);
}
override void Tick()
{
Super.Tick();
if ( sting_telegun ) return;
if ( sting_proto && sting_telegun ) return;
if ( Owner ) Owner.RemoveInventory(self);
Destroy();
}