Release Candidate 3 Hotfix 3:
- Fix Armor Bonuses having the allmap effect due to hasty code copypasting.
This commit is contained in:
parent
a06ab42a4a
commit
32698cf0e4
1 changed files with 1 additions and 3 deletions
|
|
@ -275,9 +275,7 @@ Class UArmorBonus : UArmor
|
||||||
override bool TryPickup( in out Actor toucher )
|
override bool TryPickup( in out Actor toucher )
|
||||||
{
|
{
|
||||||
if ( !sting_abonus ) return false; // not allowed
|
if ( !sting_abonus ) return false; // not allowed
|
||||||
bool valid = Super.TryPickup(toucher);
|
return Super.TryPickup(toucher);
|
||||||
if ( valid ) level.allmap = true;
|
|
||||||
return valid;
|
|
||||||
}
|
}
|
||||||
override void Tick()
|
override void Tick()
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue