Skip to content

Commit 4cea190

Browse files
authored
clear warning of unused data
Note: The triggers will need to be adjusted for cases where player needs to cross, but I'll get to that later.
1 parent d06fb90 commit 4cea190

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ui/raidboss/data/07-dt/eureka/occult_crescent_south_horn.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ const triggerSet: TriggerSet<Data> = {
191191
// A2F4 Ray of Expulsion Afar
192192
type: 'StartsUsing',
193193
netRegex: { source: 'Demon Tablet', id: ['A2F3', 'A2F4'], capture: true },
194-
alertText: (data, matches, output) => {
194+
alertText: (_data, matches, output) => {
195195
if (matches.id === 'A2F3')
196196
return output.out!();
197197
return output.inKnockback!();
@@ -209,7 +209,7 @@ const triggerSet: TriggerSet<Data> = {
209209
// A2F7 Demonograph of Expulsion Afar
210210
type: 'StartsUsing',
211211
netRegex: { source: 'Demon Tablet', id: ['A2F6', 'A2F7'], capture: true },
212-
alertText: (data, matches, output) => {
212+
alertText: (_data, matches, output) => {
213213
if (matches.id === 'A2F6')
214214
return output.out!();
215215
return output.inKnockback!();

0 commit comments

Comments
 (0)