Skip to content

Commit

Permalink
[raboneko] Set correct schedule
Browse files Browse the repository at this point in the history
  • Loading branch information
lleyton committed Apr 2, 2023
1 parent 2d420ce commit 23e4420
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/commands/neko.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export class Ping extends SlashCommand {
}

public async run(ctx: CommandContext) {
await ctx.sendFollowUp(`Pong! ^._.^, my latency to Discord is \`${client.ws.ping}\`!`);
await ctx.sendFollowUp(`Pong! ^._.^, my latency to Discord is \`${client.ws.ping}ms\`!`);
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/scheduler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ new Worker(
{},
{
repeat: {
pattern: '*/1 * * * *',
pattern: '10 0 * * 1',
utc: true
}
}
Expand Down

0 comments on commit 23e4420

Please sign in to comment.