Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[overwatch.lic] v1.3.1 fix for Ruby constant redefinition warning #1748

Merged
merged 1 commit into from
Jan 20, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions scripts/overwatch.lic
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,11 @@
contributors: FarFigNewGut, Nisugi
game: Gemstone
tags: hunting, target, hidden, bandits
version: 1.3.0
version: 1.3.1

Improvements:
v1.3.1 (2025-01-18)
- fix for constant redefinition Ruby warning
v1.3.0 (2024-11-15)
- added detection of Covert Arts - Keen Eye
- bugfix OverWatch.push_revealed_targets to not push into GameObj.npcs if already exists
Expand Down Expand Up @@ -38,7 +40,7 @@ module OverWatch
@hidden_targets = nil
@debug = false

HIDING_REGEX = Regexp.union(
HIDING_REGEX ||= Regexp.union(
/<pushBold\/>\w+ <a exist="\d+" noun="\w+">[^<]+<\/a><popBold\/> slips into hiding\./,
/flies out of the shadows toward you\!/, # You being attacked
/A faint silvery light flickers from the shadows\./, # Hidden Bandits
Expand Down
Loading