diff --git a/src/equicordplugins/moreCommands/index.ts b/src/equicordplugins/moreCommands/index.ts index bc35d4d2..c3b791b4 100644 --- a/src/equicordplugins/moreCommands/index.ts +++ b/src/equicordplugins/moreCommands/index.ts @@ -354,8 +354,6 @@ export default definePlugin({ const normalize = findOption(opts, "normalize") as string | undefined; const reverse = findOption(opts, "reverse") as string | undefined; - if (!transform || !text) return; - if (transform !== "same") { text = (text as any)[transform]?.call(text) ?? text; }