mirror of
https://github.com/TriM-Organization/LiteyukiBot-TriM.git
synced 2024-11-11 01:27:29 +08:00
😂修复了点数自动重置的问题
This commit is contained in:
parent
86378e2ec0
commit
cd85fccedf
@ -70,8 +70,8 @@ yanlun_path = (
|
||||
)
|
||||
|
||||
|
||||
# 每天1点更新
|
||||
@scheduler.scheduled_job("cron", hour=1)
|
||||
# 每天4点更新
|
||||
@scheduler.scheduled_job("cron", hour=4)
|
||||
async def every_day_update():
|
||||
ulang = Language(get_default_lang_code(), "zh-WY")
|
||||
nonebot.logger.success(ulang.get("yanlun.refresh.success", COUNT=update_yanlun()))
|
||||
@ -282,3 +282,22 @@ async def _(
|
||||
if (iill := int(final_length)) == final_length
|
||||
else await yanlun.finish(UniMessage.text(ulang.get("yanlun.length.float")))
|
||||
)
|
||||
|
||||
|
||||
time_query = on_alconna(
|
||||
command=Alconna(
|
||||
"时间",
|
||||
),
|
||||
aliases={"时间查询", "timeq", "timequery"},
|
||||
)
|
||||
|
||||
|
||||
@time_query.handle()
|
||||
async def _(
|
||||
event: T_MessageEvent,
|
||||
bot: T_Bot,
|
||||
):
|
||||
# ulang = get_user_lang(event_utils.get_user_id(event)) # type: ignore
|
||||
await time_query.finish(
|
||||
UniMessage.text(zhDateTime.DateTime.now().to_lunar().hanzify())
|
||||
)
|
||||
|
@ -180,7 +180,7 @@ def query_convert_points(
|
||||
return store, people_convert_point[usr_id][item]["point"]
|
||||
|
||||
|
||||
# 每天1点更新
|
||||
# 每天4点更新
|
||||
@scheduler.scheduled_job("cron", hour=4)
|
||||
async def every_day_update():
|
||||
# ulang = Language(get_default_lang_code(), "zh-WY")
|
||||
@ -238,8 +238,7 @@ async def _():
|
||||
except:
|
||||
pass
|
||||
|
||||
if qqid in people_convert_point:
|
||||
del people_convert_point[qqid]
|
||||
query_convert_points(qqid,"music",0,False)
|
||||
filesaves[qqid]["totalSize"] -= filesaves[qqid][name]["size"]
|
||||
nonebot.logger.info(
|
||||
"\t删除{}".format(name),
|
||||
|
@ -166,4 +166,4 @@ yanlun.count.head=出处ttt数量(占比)
|
||||
yanlun.count.tail=...(共 {NUM} 条)
|
||||
yanlun.length.toolong=言·论过长
|
||||
yanlun.length.tooshort=言·论过短
|
||||
yanlun.length.float=言·论不可是非整数长度
|
||||
yanlun.length.float=言·论不可是非整数长度
|
||||
|
Loading…
Reference in New Issue
Block a user