Skip to content

Commit

Permalink
raidboss: convert one final NetRegexes.message to params
Browse files Browse the repository at this point in the history
Finishes #5451
  • Loading branch information
quisquous committed Jun 25, 2023
1 parent 5f38b03 commit 100669e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ui/raidboss/data/04-sb/dungeon/bardams_mettle63.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import Conditions from '../../../../../resources/conditions';
import NetRegexes from '../../../../../resources/netregexes';
import { Responses } from '../../../../../resources/responses';
import Util from '../../../../../resources/util';
import ZoneId from '../../../../../resources/zone_id';
import { RaidbossData } from '../../../../../types/data';
import { TriggerSet } from '../../../../../types/trigger';
Expand Down Expand Up @@ -50,8 +51,9 @@ const triggerSet: TriggerSet<Data> = {
// If we're in the Yol encounter, we're obviously not fighting Bardam.
id: 'Bardam63 Dead Bardam',
type: 'GameLog',
netRegex: NetRegexes.message({
netRegex: NetRegexes.gameLog({
line: 'Voiceless Muse will be sealed off.*?',
code: Util.gameLogCodes.message,
capture: false,
}),
run: (data) => data.deadBardam = true,
Expand Down

0 comments on commit 100669e

Please sign in to comment.