Archived
1
0
Fork 0

domain transfer

This commit is contained in:
多洛系狼狼 2022-06-03 22:17:34 +08:00
parent 7ceab4103f
commit b59b72e3fd
3 changed files with 5 additions and 5 deletions

View file

@ -15,7 +15,7 @@ body:
label: 开始之前……
description: 让我们看看你的登机牌准备好了吗
options:
- label: 我已阅读并同意小可 [服务条款](https://bot.teahou.se/wiki/tos) 和 Teahouse Studios [隐私政策](https://teahou.se/privacy)、问谛居 [用户协议](https://doc.wd-ljt.com/policy/user/) 和 [隐私政策](https://doc.wd-ljt.com/policy/privacy/)
- label: 我已阅读并同意小可 [服务条款](https://bot.teahouse.team/wiki/tos) 和 Teahouse Studios [隐私政策](https://teahouse.team/privacy)、问谛居 [用户协议](https://doc.wd-ljt.com/policy/user/) 和 [隐私政策](https://doc.wd-ljt.com/policy/privacy/)
required: true
- type: dropdown
id: group-type

View file

@ -43,7 +43,7 @@ QQ频道的测试版支持也请在上方链接申请。我们正在进行QQ频
### 贡献
如您想为我们编写新的模块,可以看看[这里](https://bot.teahou.se/wiki/%E6%96%B0%E5%BB%BA%E6%A8%A1%E5%9D%97%E6%8C%87%E5%8D%97)
如您想为我们编写新的模块,可以看看[这里](https://bot.teahouse.team/wiki/%E6%96%B0%E5%BB%BA%E6%A8%A1%E5%9D%97%E6%8C%87%E5%8D%97)
## 许可

View file

@ -254,7 +254,7 @@ async def _(msg: MessageSession):
await msg.finish([Image(render),
Plain('此处展示的帮助文档仅展示已开启的模块,若需要查看全部模块的帮助文档,请使用~modules命令。'
'\n你也可以通过查阅文档获取帮助:'
'\nhttps://bot.teahou.se/wiki/'
'\nhttps://bot.teahouse.team/wiki/'
'\n若您有经济实力,欢迎给孩子们在爱发电上打钱:'
'\nhttps://afdian.net/@teahouse')])
except Exception:
@ -274,7 +274,7 @@ async def _(msg: MessageSession):
help_msg.append(' | '.join(module_))
print(help_msg)
help_msg.append(
'使用~help <对应模块名>查看详细信息。\n使用~modules查看所有的可用模块。\n你也可以通过查阅文档获取帮助:\nhttps://bot.teahou.se/wiki/')
'使用~help <对应模块名>查看详细信息。\n使用~modules查看所有的可用模块。\n你也可以通过查阅文档获取帮助:\nhttps://bot.teahouse.team/wiki/')
if msg.Feature.delete:
help_msg.append('[本消息将在一分钟后撤回]')
send = await msg.sendMessage('\n'.join(help_msg))
@ -340,7 +340,7 @@ async def modules_help(msg: MessageSession):
module_.append(module_list[x].bind_prefix)
help_msg.append(' | '.join(module_))
help_msg.append(
'使用~help <模块名>查看详细信息。\n你也可以通过查阅文档获取帮助:\nhttps://bot.teahou.se/wiki/')
'使用~help <模块名>查看详细信息。\n你也可以通过查阅文档获取帮助:\nhttps://bot.teahouse.team/wiki/')
if msg.Feature.delete:
help_msg.append('[本消息将在一分钟后撤回]')
send = await msg.sendMessage('\n'.join(help_msg))