Skip to content

Commit

Permalink
feat(discord-bot): update deprecated command descriptions (#688)
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobk999 authored Aug 21, 2024
1 parent 58b7da0 commit 2a4241d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

import { Command, type IMessage } from "@statsify/discord";

@Command({ description: (t) => t("deprecated.command-description", { newCommandName: "duels" }) })
@Command({ description: (t) => t("deprecated.command-description", { newCommandName: "/duels" }) })
export class BridgeCommand {
public run(): IMessage {
return {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

import { Command, type IMessage } from "@statsify/discord";

@Command({ description: (t) => t("deprecated.command-description", { newCommandName: "arcade" }) })
@Command({ description: (t) => t("deprecated.command-description", { newCommandName: "/arcade" }) })
export class DropperCommand {
public run(): IMessage {
return {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

import { Command, type IMessage } from "@statsify/discord";

@Command({ description: (t) => t("deprecated.command-description", { command: "status" }) })
@Command({ description: (t) => t("deprecated.command-description", { command: "/status" }) })
export class RecentGamesCommand {
public run(): IMessage {
return {
Expand Down

0 comments on commit 2a4241d

Please sign in to comment.