Release Candidate 3 Hotfix 3:

- Fix Armor Bonuses having the allmap effect due to hasty code copypasting.
This commit is contained in:
Marisa the Magician 2019-10-13 22:27:38 +02:00
commit 32698cf0e4

View file

@ -275,9 +275,7 @@ Class UArmorBonus : UArmor
override bool TryPickup( in out Actor toucher )
{
if ( !sting_abonus ) return false; // not allowed
bool valid = Super.TryPickup(toucher);
if ( valid ) level.allmap = true;
return valid;
return Super.TryPickup(toucher);
}
override void Tick()
{