koishi-plugin-ets2-tools-tmp 2.5.8 → 2.5.9
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.
- package/lib/index.js +6 -6
- package/package.json +1 -1
package/lib/index.js
CHANGED
|
@@ -276,16 +276,16 @@ function registerBaseCommands(ctx, cfg) {
|
|
|
276
276
|
}
|
|
277
277
|
|
|
278
278
|
if (cfg.commands?.tmpFootprint) {
|
|
279
|
-
ctx.command('
|
|
279
|
+
ctx.command('近十日足迹 [tmpId:string]')
|
|
280
280
|
.usage("查询ETS服务器今日足迹")
|
|
281
|
-
.example("
|
|
282
|
-
.example("
|
|
281
|
+
.example("近十日足迹")
|
|
282
|
+
.example("近十日足迹 12345")
|
|
283
283
|
.action(async ({ session }, tmpId) => await commands.tmpFootprint(ctx, session, ServerType.ets, tmpId, 'tenday'));
|
|
284
284
|
|
|
285
|
-
ctx.command('
|
|
285
|
+
ctx.command('近十日足迹p [tmpId:string]')
|
|
286
286
|
.usage("查询Promods服务器今日足迹")
|
|
287
|
-
.example("
|
|
288
|
-
.example("
|
|
287
|
+
.example("近十日足迹p")
|
|
288
|
+
.example("近十日足迹p 12345")
|
|
289
289
|
.action(async ({ session }, tmpId) => await commands.tmpFootprint(ctx, session, ServerType.promods, tmpId, 'tenday'));
|
|
290
290
|
|
|
291
291
|
ctx.command('昨日足迹 [tmpId:string]')
|