Skip to content

Commit

Permalink
Prevent loading SoD dungeon mods on Era (#346)
Browse files Browse the repository at this point in the history
  • Loading branch information
emmericp authored Dec 29, 2024
1 parent 3b12328 commit 8fc0374
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 0 deletions.
1 change: 1 addition & 0 deletions DBM-Party-Vanilla/Classic/SOD_DemonFallCanyon/Azgaloth.lua
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
if not DBM:IsSeasonal("SeasonOfDiscovery") then return end
local mod = DBM:NewMod("Azgaloth", "DBM-Party-Vanilla", 21)
local L = mod:GetLocalizedStrings()

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
if not DBM:IsSeasonal("SeasonOfDiscovery") then return end
local mod = DBM:NewMod("DestructorsWraith", "DBM-Party-Vanilla", 21)
local L = mod:GetLocalizedStrings()

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
if not DBM:IsSeasonal("SeasonOfDiscovery") then return end
local mod = DBM:NewMod("Diathorus", "DBM-Party-Vanilla", 21)
local L = mod:GetLocalizedStrings()

Expand Down
1 change: 1 addition & 0 deletions DBM-Party-Vanilla/Classic/SOD_DemonFallCanyon/Grimroot.lua
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
if not DBM:IsSeasonal("SeasonOfDiscovery") then return end
local mod = DBM:NewMod("Grimroot", "DBM-Party-Vanilla", 21)
local L = mod:GetLocalizedStrings()

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
if not DBM:IsSeasonal("SeasonOfDiscovery") then return end
local mod = DBM:NewMod("HellscreamsPhantom", "DBM-Party-Vanilla", 21)
local L = mod:GetLocalizedStrings()

Expand Down
1 change: 1 addition & 0 deletions DBM-Party-Vanilla/Classic/SOD_DemonFallCanyon/Pyranis.lua
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
if not DBM:IsSeasonal("SeasonOfDiscovery") then return end
local mod = DBM:NewMod("Pyranis", "DBM-Party-Vanilla", 21)
local L = mod:GetLocalizedStrings()

Expand Down
1 change: 1 addition & 0 deletions DBM-Party-Vanilla/Classic/SOD_DemonFallCanyon/Zilbagob.lua
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
if not DBM:IsSeasonal("SeasonOfDiscovery") then return end
local mod = DBM:NewMod("Zilbagob", "DBM-Party-Vanilla", 21)
local L = mod:GetLocalizedStrings()

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
if not DBM:IsSeasonal("SeasonOfDiscovery") then return end
local mod = DBM:NewMod("CreepingMalison", "DBM-Party-Vanilla", 22)
local L = mod:GetLocalizedStrings()

Expand Down
1 change: 1 addition & 0 deletions DBM-Party-Vanilla/Classic/SOD_KarazhanCrypts/Criminal.lua
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
if not DBM:IsSeasonal("SeasonOfDiscovery") then return end
local mod = DBM:NewMod("KarazhanCriminal", "DBM-Party-Vanilla", 22)
local L = mod:GetLocalizedStrings()

Expand Down
1 change: 1 addition & 0 deletions DBM-Party-Vanilla/Classic/SOD_KarazhanCrypts/DarkRider.lua
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
if not DBM:IsSeasonal("SeasonOfDiscovery") then return end
local mod = DBM:NewMod("DarkRider", "DBM-Party-Vanilla", 22)
local L = mod:GetLocalizedStrings()

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
if not DBM:IsSeasonal("SeasonOfDiscovery") then return end
local mod = DBM:NewMod("HarbingerOfSin", "DBM-Party-Vanilla", 22)
local L = mod:GetLocalizedStrings()

Expand Down
1 change: 1 addition & 0 deletions DBM-Party-Vanilla/Classic/SOD_KarazhanCrypts/Kharon.lua
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
if not DBM:IsSeasonal("SeasonOfDiscovery") then return end
local mod = DBM:NewMod("Kharon", "DBM-Party-Vanilla", 22)
local L = mod:GetLocalizedStrings()

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
if not DBM:IsSeasonal("SeasonOfDiscovery") then return end
local mod = DBM:NewMod("OperaOfMalediction", "DBM-Party-Vanilla", 22)
local L = mod:GetLocalizedStrings()

Expand Down

0 comments on commit 8fc0374

Please sign in to comment.