Skip to content

Commit

Permalink
Stealth: increase minimum distance for nearby lights.
Browse files Browse the repository at this point in the history
  • Loading branch information
caligari87 committed Mar 14, 2020
1 parent fd45711 commit 316eb12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/ai/stealth.zsc
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ class UaS_StealthHandler : Inventory {
}

// Intensify lights close to player
if (currentDistance < owner.radius) { avgIntensity *= 100; }
if (currentDistance < owner.radius * 3) { avgIntensity *= 100; }

// Special handling for Steve's Flashlight
// This is a disgusting hack, BTW
Expand Down

0 comments on commit 316eb12

Please sign in to comment.