Fix: for文でスキップではなくループの終了を行っていた問題 / Feat: #10

This commit is contained in:
2026-04-30 20:10:59 +09:00
parent 90b308afa0
commit 3b66c47aa3
4 changed files with 32 additions and 22 deletions
+1 -1
View File
@@ -47,7 +47,7 @@ export default async function helpCommand(ueuse: ueuseModule, args: string[]) {
for (let i = 0; i < helps.length; i++) {
const help = helps[i];
if (!help)
break;
continue;
summarys += `${i18next.t(`help${help.charAt(0).toUpperCase()}${help.slice(1)}`)}${EOL}`;
}