Skip to content

Commit

Permalink
版本推进至3.0.5
Browse files Browse the repository at this point in the history
+ 回复词解析大改
  • Loading branch information
lunzhiPenxil committed Aug 26, 2022
1 parent 1d10372 commit 4609bfb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions OlivaDiceOdyssey/app.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"namespace" : "OlivaDiceOdyssey",
"message_mode" : "old_string",
"info" : "本模块为OlivaDice的高阶模块,提供了一些涉及第三方合作的功能,它们或许是调用了第三方数据库,要么是涉及版权授权,又或者是单纯的过于依赖网络,总之这些功能由于第三方的参与很可能无法由插件开发者保证可靠性,但仍然很强大。例如魔都模组功能。",
"version" : "3.0.3",
"svn" : 4,
"version" : "3.0.5",
"svn" : 6,
"compatible_svn" : 101,
"priority" : 20040,
"support" : [
Expand Down
4 changes: 2 additions & 2 deletions OlivaDiceOdyssey/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
'''


OlivaDiceOdyssey_ver = '3.0.3'
OlivaDiceOdyssey_svn = 4
OlivaDiceOdyssey_ver = '3.0.5'
OlivaDiceOdyssey_svn = 6
OlivaDiceOdyssey_ver_short = '%s(%s)' % (str(OlivaDiceOdyssey_ver), str(OlivaDiceOdyssey_svn))
4 changes: 2 additions & 2 deletions OlivaDiceOdyssey/msgReply.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ def unity_reply(plugin_event, Proc):
str(tmp_page_now),
str(tmp_page_max)
)
tmp_reply_str = dictStrCustom['strOdysseyCnmodsSearch'].format(**dictTValue)
tmp_reply_str = OlivaDiceCore.msgCustomManager.formatReplySTR(dictStrCustom['strOdysseyCnmodsSearch'], dictTValue)
OlivaDiceCore.userConfig.setUserConfigByKey(
userConfigKey = 'cnmodsTemp',
userConfigValue = tmp_res,
Expand Down Expand Up @@ -249,7 +249,7 @@ def unity_reply(plugin_event, Proc):
str(tmp_page_now),
str(tmp_page_max)
)
tmp_reply_str = dictStrCustom['strOdysseyCnmodsLuck'].format(**dictTValue)
tmp_reply_str = OlivaDiceCore.msgCustomManager.formatReplySTR(dictStrCustom['strOdysseyCnmodsLuck'], dictTValue)
OlivaDiceCore.userConfig.setUserConfigByKey(
userConfigKey = 'cnmodsTemp',
userConfigValue = tmp_res,
Expand Down

0 comments on commit 4609bfb

Please sign in to comment.