Skip to content

Commit

Permalink
feat(discord-bot): update deprecated command messages (#689)
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobk999 authored Aug 21, 2024
1 parent 2a4241d commit 6d36a8a
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 @@ -12,7 +12,7 @@ import { Command, type IMessage } from "@statsify/discord";
export class BridgeCommand {
public run(): IMessage {
return {
content: (t) => t("deprecated.merged-mode", {
content: (t) => t("deprecated.merged-dropdown", {
oldCommandName: "`/bridge`",
newCommand: "</duels:1140654940658868317>",
newCommandName: `${t("emojis:games.DUELS")} **Duels**`,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { Command, type IMessage } from "@statsify/discord";
export class DropperCommand {
public run(): IMessage {
return {
content: (t) => t("deprecated.merged-mode", {
content: (t) => t("deprecated.merged-dropdown", {
oldCommandName: "`/dropper`",
newCommand: "</arcade:1140654940273000557>",
newCommandName: `${t("emojis:games.ARCADE")} **Arcade**`,
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", { newCommandName: "/status" }) })
export class RecentGamesCommand {
public run(): IMessage {
return {
Expand Down

0 comments on commit 6d36a8a

Please sign in to comment.