Skip to content

Commit a478f5a

Browse files
committed
判定写反了
1 parent 8162e4e commit a478f5a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Chat/src/MY_Chat.lua

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
-- @Date : 2016-02-5 11:35:53
55
-- @Email : admin@derzh.com
66
-- @Last modified by: Emil Zhai
7-
-- @Last modified time: 2016-09-21 16:50:59
7+
-- @Last modified time: 2016-09-21 17:16:12
88
--------------------------------------------
99
local _L = MY.LoadLangPack(MY.GetAddonInfo().szRoot .. "Chat/lang/")
1010
MY_Chat = {}
@@ -189,15 +189,15 @@ function PS.OnPanelActive(wnd)
189189
table.insert(menu, MENU_DIVIDER)
190190
table.insert(menu, {
191191
szOption = _L['ignore spaces'],
192-
bCheck = true, bChecked = data[3],
192+
bCheck = true, bChecked = not data[3],
193193
fnAction = function()
194194
data[3] = not data[3]
195195
SaveBlockWords()
196196
end,
197197
})
198198
table.insert(menu, {
199199
szOption = _L['ignore enem'],
200-
bCheck = true, bChecked = data[4],
200+
bCheck = true, bChecked = not data[4],
201201
fnAction = function()
202202
data[4] = not data[4]
203203
SaveBlockWords()

0 commit comments

Comments
 (0)