Skip to content

Commit

Permalink
版本推进至3.0.11
Browse files Browse the repository at this point in the history
从全前缀指令过滤迁移至精确指令识别过滤
  • Loading branch information
lunzhiPenxil committed Dec 14, 2022
1 parent e3a8cb0 commit 13ad983
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions OlivaDiceJoy/app.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"namespace" : "OlivaDiceJoy",
"message_mode" : "old_string",
"info" : "本模块为OlivaDice的娱乐模块,提供了一些无关紧要的娱乐功能,它们或许是与跑团关系不大、或许只是一些历史原因遗留下来的传统,总之,这些在野蛮生长时期被或是由于开发者无知、或是作为恶性竞争手段、或是用户呼声较大但对于跑团而言意义不明的,被添加进来的小功能,都会被放入这个模块。",
"version" : "3.0.10",
"svn" : 18,
"version" : "3.0.11",
"svn" : 19,
"compatible_svn" : 101,
"priority" : 20010,
"support" : [
Expand Down
4 changes: 2 additions & 2 deletions OlivaDiceJoy/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
'''


OlivaDiceJoy_ver = '3.0.10'
OlivaDiceJoy_svn = 18
OlivaDiceJoy_ver = '3.0.11'
OlivaDiceJoy_svn = 19
OlivaDiceJoy_ver_short = '%s(%s)' % (str(OlivaDiceJoy_ver), str(OlivaDiceJoy_svn))

listPlugin = []
Expand Down
6 changes: 3 additions & 3 deletions OlivaDiceJoy/msgReply.py
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ def unity_reply(plugin_event, Proc):
#此群关闭时中断处理
if not flag_groupEnable and not flag_force_reply:
return
if isMatchWordStart(tmp_reast_str, 'jrrp'):
if isMatchWordStart(tmp_reast_str, 'jrrp', isCommand = True):
tmp_reast_str = getMatchWordStartRight(tmp_reast_str, 'jrrp')
tmp_reast_str = skipSpaceStart(tmp_reast_str)
tmp_reast_str = tmp_reast_str.rstrip(' ')
Expand All @@ -317,7 +317,7 @@ def unity_reply(plugin_event, Proc):
if tmp_reply_str != None:
replyMsg(plugin_event, tmp_reply_str)
return
elif isMatchWordStart(tmp_reast_str, 'zrrp'):
elif isMatchWordStart(tmp_reast_str, 'zrrp', isCommand = True):
tmp_reast_str = getMatchWordStartRight(tmp_reast_str, 'zrrp')
tmp_reast_str = skipSpaceStart(tmp_reast_str)
tmp_reast_str = tmp_reast_str.rstrip(' ')
Expand All @@ -331,7 +331,7 @@ def unity_reply(plugin_event, Proc):
if tmp_reply_str != None:
replyMsg(plugin_event, tmp_reply_str)
return
elif isMatchWordStart(tmp_reast_str, 'mrrp'):
elif isMatchWordStart(tmp_reast_str, 'mrrp', isCommand = True):
tmp_reast_str = getMatchWordStartRight(tmp_reast_str, 'mrrp')
tmp_reast_str = skipSpaceStart(tmp_reast_str)
tmp_reast_str = tmp_reast_str.rstrip(' ')
Expand Down

0 comments on commit 13ad983

Please sign in to comment.