From 9254176faeee71ace04a775ebc9545c64ddb875c Mon Sep 17 00:00:00 2001 From: seeyebe <85168740+seeyebe@users.noreply.github.com> Date: Mon, 23 Jun 2025 01:10:10 +0300 Subject: [PATCH] fix: unhide case --- .../ModActions/commands/unhidecase/UnhideCaseMsgCmd.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/src/plugins/ModActions/commands/unhidecase/UnhideCaseMsgCmd.ts b/backend/src/plugins/ModActions/commands/unhidecase/UnhideCaseMsgCmd.ts index 1fddfeef..4888e8eb 100644 --- a/backend/src/plugins/ModActions/commands/unhidecase/UnhideCaseMsgCmd.ts +++ b/backend/src/plugins/ModActions/commands/unhidecase/UnhideCaseMsgCmd.ts @@ -1,6 +1,6 @@ import { commandTypeHelpers as ct } from "../../../../commandTypes.js"; import { modActionsMsgCmd } from "../../types.js"; -import { actualHideCaseCmd } from "../hidecase/actualHideCaseCmd.js"; +import { actualUnhideCaseCmd } from "./actualUnhideCaseCmd.js"; export const UnhideCaseMsgCmd = modActionsMsgCmd({ trigger: ["unhide", "unhidecase", "unhide_case"], @@ -14,6 +14,6 @@ export const UnhideCaseMsgCmd = modActionsMsgCmd({ ], async run({ pluginData, message: msg, args }) { - actualHideCaseCmd(pluginData, msg, args.caseNum); + actualUnhideCaseCmd(pluginData, msg, args.caseNum); }, });