diff --git a/backend/src/plugins/ModActions/commands/case/CaseMsgCmd.ts b/backend/src/plugins/ModActions/commands/case/CaseMsgCmd.ts index 211e529f..681a997e 100644 --- a/backend/src/plugins/ModActions/commands/case/CaseMsgCmd.ts +++ b/backend/src/plugins/ModActions/commands/case/CaseMsgCmd.ts @@ -2,10 +2,6 @@ import { commandTypeHelpers as ct } from "../../../../commandTypes.js"; import { modActionsMsgCmd } from "../../types.js"; import { actualCaseCmd } from "./actualCaseCmd.js"; -const opts = { - show: ct.switchOption({ def: false, shortcut: "sh" }), -}; - export const CaseMsgCmd = modActionsMsgCmd({ trigger: "case", permission: "can_view", @@ -14,12 +10,10 @@ export const CaseMsgCmd = modActionsMsgCmd({ signature: [ { caseNumber: ct.number(), - - ...opts, }, ], async run({ pluginData, message: msg, args }) { - actualCaseCmd(pluginData, msg, msg.author.id, args.caseNumber, args.show); + actualCaseCmd(pluginData, msg, msg.author.id, args.caseNumber); }, });