Skip to content

Commit

Permalink
Fix error in conventions
Browse files Browse the repository at this point in the history
  • Loading branch information
MysticalOS committed Jul 16, 2023
1 parent e923f8a commit 496a6fd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions DBM-Core/DBM-Core.lua
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ local bwVersionResponseString = "V^%d^%s"
local PForceDisable
-- The string that is shown as version
if isRetail then
DBM.DisplayVersion = "10.1.17 alpha"
DBM.ReleaseRevision = releaseDate(2023, 7, 14) -- the date of the latest stable version that is available, optionally pass hours, minutes, and seconds for multiple releases in one day
DBM.DisplayVersion = "10.1.17"
DBM.ReleaseRevision = releaseDate(2023, 7, 16) -- the date of the latest stable version that is available, optionally pass hours, minutes, and seconds for multiple releases in one day
PForceDisable = 5--When this is incremented, trigger force disable regardless of major patch
fakeBWVersion, fakeBWHash = 278, "6d6db52"
elseif isClassic then
Expand Down Expand Up @@ -8529,7 +8529,7 @@ do

--Not to be confused with SetText, which only sets the text of object.
--This changes actual ID so announce callback also swaps ID for WAs
function announcePrototype:SetKey(altSpellId)
function announcePrototype:UpdateKey(altSpellId)
self.spellId = altSpellId
local text, spellName = setText(self.announceType, self.spellId, self.castTime, self.preWarnTime)
self.text = text
Expand Down Expand Up @@ -9322,7 +9322,7 @@ do
self.spellName = spellName
end

function specialWarningPrototype:SetKey(altSpellId)
function specialWarningPrototype:UpdateKey(altSpellId)
self.spellId = altSpellId
local text, spellName = setText(self.announceType, self.spellId, self.stacks)
self.text = text
Expand Down

0 comments on commit 496a6fd

Please sign in to comment.