Skip to content

Commit

Permalink
bump up 1.0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
benx1n committed Dec 1, 2024
1 parent 5b87f7f commit bd6e532
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
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 = "hikari-bot"
version = "1.0.8"
version = "1.0.9"
description = "Nonebot2 HikariBot,支持战舰世界水表查询"
authors = ["benx1n <[email protected]>"]
license = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions src/plugins/hikari_bot/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
is_first_run = True
_nlmt = DailyNumberLimiter(_max)
_flmt = FreqLimiter(3)
__bot_version__ = '1.0.8'
__bot_version__ = '1.0.9'

bot_get_random_pic = on_fullmatch('wws 随机表情包', block=True, priority=5)
bot_update = on_fullmatch('wws 更新Hikari', priority=5, block=True, permission=SUPERUSER)
Expand Down Expand Up @@ -189,7 +189,7 @@ async def GROUP_FILE_listen(bot: Bot, ev: NoticeEvent):
return
if not str(ev).__contains__('.wowsreplay'):
return
#此项兼容docker部署协议端下载replay文件,自行前往协议端配置base64
# 此项兼容docker部署协议端下载replay文件,自行前往协议端配置base64
if hasattr(ev.file, 'url') and ev.file.url and ev.file.url.startswith('file://'):
base64_file = await bot.get_image(file=ev.file.id)
if not str(base64_file).__contains__("'base64':"):
Expand Down

0 comments on commit bd6e532

Please sign in to comment.