Skip to content

Commit bd0e201

Browse files
committed
remove accidental devtool leftover
1 parent 28724ff commit bd0e201

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

Display.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -492,7 +492,7 @@ function MPT:UpdateBosses(Start, count, preview)
492492
end
493493
end
494494
if self.cmap == 556 and i == 3 then name = criteria.description end -- Using Blizzard's name for "Quarry camps liberated" since there is no other translated version to use
495-
if self.cmap == 227 and num == 3 then name = "Opera Hall" end
495+
if self.cmap == 227 and num == 3 then name = "Opera Hall" end -- figure out a way for localized name if the dungeon returns at some point
496496
if name and name ~= "" and ((not maxbosses) or i <= maxbosses) then
497497
name = self:Utf8Sub(name, 1, self.BossName.MaxLength)
498498
self.MaxBossFrame = i
@@ -557,7 +557,7 @@ function MPT:UpdateBosses(Start, count, preview)
557557
frame["BossName"..i]:SetTextColor(unpack(self.BossName.CompletionColor))
558558
local timercolor = self.BossTimer.SuccessColor -- if there is no pb the default color should be the "success" color
559559
local time = self.BossTimes[i] or select(2, GetWorldElapsedTime(1))-defeated
560-
if self.cmap == 556 and i == 3 then -- Pit of Saron Quarry returns info about 1/5 instead of 5/5 so gotta store the value the first it is reached.
560+
if self.cmap == 556 and i == 3 then -- Pit of Saron Quarry returns info about 1/6 instead of 6/6 so gotta store the value on completion.
561561
time = self.QuarryTime or select(2, GetWorldElapsedTime(1))
562562
self.QuarryTime = time
563563
end

UI.lua

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -753,7 +753,6 @@ function MPT.UI:OnInitialize()
753753
AceConfig:RegisterOptionsTable("MPTSettings", settings)
754754
AceConfig:RegisterOptionsTable("MPTProfiles", profiles)
755755
self.optionsFrame = AceConfigdialog:AddToBlizOptions("MPlusTimer", "MPlusTimer")
756-
DevTool:AddData(self.optionsFrame)
757756
self.settingsFrame = AceConfigdialog:AddToBlizOptions("MPTSettings", "Display Settings", "MPlusTimer")
758757
self.profilesFrame = AceConfigdialog:AddToBlizOptions("MPTProfiles", "Profiles", "MPlusTimer")
759758
self:RegisterChatCommand("mpt", "SlashCommand")

0 commit comments

Comments
 (0)