Skip to content

Commit 698ee06

Browse files
committed
聊天过滤 忽略空格选项设置反了
1 parent 687e367 commit 698ee06

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Chat/src/MY_Chat.lua

Lines changed: 2 additions & 2 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-10-14 12:08:58
7+
-- @Last modified time: 2016-10-16 17:00:45
88
--------------------------------------------
99
local _L = MY.LoadLangPack(MY.GetAddonInfo().szRoot .. "Chat/lang/")
1010
MY_Chat = {}
@@ -219,7 +219,7 @@ function PS.OnPanelActive(wnd)
219219
table.insert(menu, MENU_DIVIDER)
220220
table.insert(menu, {
221221
szOption = _L['ignore spaces'],
222-
bCheck = true, bChecked = not data[3],
222+
bCheck = true, bChecked = data[3],
223223
fnAction = function()
224224
data[3] = not data[3]
225225
SaveBlockWords()

0 commit comments

Comments
 (0)