koishi-plugin-rocom 1.0.3 → 1.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5,7 +5,9 @@ const WIKI_CLOSED_MESSAGE = '该功能暂时关闭';
5
5
  function register(deps) {
6
6
  const { ctx } = deps;
7
7
  ctx.command('洛克').subcommand('.wiki <name:text>', '查询精灵 wiki')
8
+ .alias('洛克wiki')
8
9
  .action(() => WIKI_CLOSED_MESSAGE);
9
10
  ctx.command('洛克').subcommand('.技能 <name:text>', '查询技能 wiki')
11
+ .alias('洛克技能')
10
12
  .action(() => WIKI_CLOSED_MESSAGE);
11
13
  }