From 13d7752c6d0e4e799ee99c32a1ddc4e163087153 Mon Sep 17 00:00:00 2001 From: Miodec Date: Sun, 23 Nov 2025 16:04:35 +0100 Subject: [PATCH] chore: add command to fix skill issue --- frontend/src/ts/commandline/lists.ts | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/frontend/src/ts/commandline/lists.ts b/frontend/src/ts/commandline/lists.ts index bd4d29314..1dbe01c36 100644 --- a/frontend/src/ts/commandline/lists.ts +++ b/frontend/src/ts/commandline/lists.ts @@ -332,6 +332,29 @@ export const commands: CommandsSubgroup = { ], }, }, + { + id: "fixSkillIssue", + display: "Fix skill issue", + icon: "fa-wrench", + visible: false, + exec: async (): Promise => { + // window.open("https://www.youtube.com/watch?v=dQw4w9WgXcQ"); + (document.querySelector("body") as HTMLElement).innerHTML = ` +
+

Fixing skill issue...

+ +
+ `; + setTimeout(() => { + document + .querySelector(".centerbox") + ?.insertAdjacentHTML( + "beforeend", + `

If your skill issue is not fixed yet, please wait a bit longer...

` + ); + }, 5000); + }, + }, { id: "joinDiscord", display: "Join the Discord server",