Skip to content

Commit

Permalink
Merge pull request #89 from MysteryDragon/shadow-splash-fix
Browse files Browse the repository at this point in the history
Version 2.24.1: Fix for ignorance of Shadow Splash settings when notifying about it
  • Loading branch information
MysteryDragon authored Feb 4, 2023
2 parents 73ac4b5 + ce8ca46 commit 7613d00
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion RaidNotifier.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ local RaidNotifier = RaidNotifier

RaidNotifier.Name = "RaidNotifier"
RaidNotifier.DisplayName = "Raid Notifier"
RaidNotifier.Version = "2.24"
RaidNotifier.Version = "2.24.1"
RaidNotifier.Author = "|c009ad6Kyoma, Memus, Woeler, silentgecko|r"
RaidNotifier.SV_Name = "RNVars"
RaidNotifier.SV_Version = 4
Expand Down
2 changes: 1 addition & 1 deletion RaidNotifier.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## Title: |cEFEBBERaidNotifier|r
## Description: Displays on-screen notifications on different events during trials.
## Author: |c009ad6Kyoma, Memus, Woeler, silentgecko|r
## Version: 2.24
## Version: 2.24.1
## APIVersion: 101036
## SavedVariables: RNVars RN_DEBUG_LOG
## DependsOn: LibAddonMenu-2.0>=28 LibUnits2
Expand Down
2 changes: 1 addition & 1 deletion TrialCloudrest.lua
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ function RaidNotifier.CR.OnCombatEvent(_, result, isError, aName, aGraphic, aAct
self:StartCountdown(6500, zo_strformat(GetString(RAIDNOTIFIER_ALERTS_CLOUDREST_ROARING_FLARE_OTHER), tName), "cloudrest", "roaring_flare", false)
end
end
elseif abilityId == buffsDebuffs.shadow_splash then
elseif abilityId == buffsDebuffs.shadow_splash and settings.shadow_splash == true then
self:AddAnnouncement(GetString(RAIDNOTIFIER_ALERTS_CLOUDREST_SHADOW_SPLASH), "cloudrest", "shadow_splash")
end
elseif result == ACTION_RESULT_EFFECT_GAINED then
Expand Down

0 comments on commit 7613d00

Please sign in to comment.