Skip to content

Commit 64e3cc5

Browse files
committed
Fix typo in global setting name
1 parent 72f8867 commit 64e3cc5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Options.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ function Opt.Show(self)
9898

9999
local printKills = checkbox("Print kill updates to chat",
100100
"With this enabled, every kill you make is going to be announced locally in the chatbox",
101-
function(_, checked) KT.Global.PRINT = checked end)
101+
function(_, checked) KT.Global.PRINTKILLS = checked end)
102102
printKills:SetPoint("TOPLEFT", title, "BOTTOMLEFT", -2, -16)
103103

104104
local tooltipControl = checkbox("Show mob data in tooltip",
@@ -255,7 +255,7 @@ function Opt.Show(self)
255255
datetimeFormatReset:SetPoint("LEFT", datetimeFormat, "RIGHT", 5, 0)
256256

257257
local function init()
258-
printKills:SetChecked(KT.Global.PRINT)
258+
printKills:SetChecked(KT.Global.PRINTKILLS)
259259
tooltipControl:SetChecked(KT.Global.TOOLTIP)
260260
printNew:SetChecked(KT.Global.PRINTNEW)
261261
countGroup:SetChecked(KT.Global.COUNT_GROUP)

0 commit comments

Comments
 (0)