Skip to content

Commit

Permalink
0.3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
MeetWq committed Dec 4, 2023
1 parent 7876cf0 commit 72be48c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions nonebot_plugin_handle/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
"unique_name": "handle",
"example": "@小Q 猜成语",
"author": "meetwq <[email protected]>",
"version": "0.3.4",
"version": "0.3.6",
},
)

Expand Down Expand Up @@ -205,7 +205,7 @@ async def send(

cid = get_cid(bot, event)
if not games.get(cid, None):
is_strict = handle_config.handle_strict_mode if handle_config.handle_strict_mode else options.strict
is_strict = handle_config.handle_strict_mode or options.strict
game = Handle(*random_idiom(), strict=is_strict)
games[cid] = game
set_timeout(matcher, cid)
Expand Down
6 changes: 3 additions & 3 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "nonebot_plugin_handle"
version = "0.3.5"
version = "0.3.6"
description = "Nonebot2 汉字Wordle 插件"
authors = ["meetwq <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit 72be48c

Please sign in to comment.