Skip to content

Commit

Permalink
More M4S improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
xpdota committed Aug 6, 2024
1 parent 43f273d commit 5f263ca
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ public boolean enabled(EventContext context) {
@NpcCastCallout(0x95EF)
private final ModifiableCallout<AbilityCastStart> wrathOfZeus = ModifiableCallout.durationBasedCall("Wrath of Zeus", "Raidwide");

private final ModifiableCallout<AbilityCastStart> electrifyingInsideSafe = ModifiableCallout.durationBasedCall("Electrifying Witch Hunt: Inside Safe", "Inside");
private final ModifiableCallout<AbilityCastStart> electrifyingOutsideSafe = ModifiableCallout.durationBasedCall("Electrifying Witch Hunt: Outside Safe", "Outside");
private final ModifiableCallout<AbilityCastStart> electrifyingInsideSafe = ModifiableCallout.durationBasedCall("Electrifying Witch Hunt: Inside Safe", "Inside, Avoid Lines");
private final ModifiableCallout<AbilityCastStart> electrifyingOutsideSafe = ModifiableCallout.durationBasedCall("Electrifying Witch Hunt: Outside Safe", "Outside, Avoid Lines");
@AutoFeed
private final SequentialTrigger<BaseEvent> electrifyingWitchHunt = SqtTemplates.sq(30_000,
(AbilityCastStart.class), acs -> acs.abilityIdMatches(0x95E5),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ protected List<CalloutInitialValues> getExpectedCalls() {
return List.of(
call(9892, "Raidwide", "Raidwide (4.7)"),
call(31592, "Avoid Lines", "Avoid Lines (5.7)"),
call(44070, "Inside", "Inside (4.7)"),
call(44070, "Inside, Avoid Lines", "Inside, Avoid Lines (4.7)"),
call(52230, "Outside, Bait Out", "Outside, Bait Out (4.7)"),
call(60384, "Inside, Baiters In", "Inside, Baiters In (13.7)"),
call(75441, "Outside, Baiters Out", "Outside, Baiters Out"),
Expand Down

0 comments on commit 5f263ca

Please sign in to comment.