From 3e851b335b5ff64598e6385e778fd0f71d3008b3 Mon Sep 17 00:00:00 2001 From: Andrew R <67220260+ar-cyber@users.noreply.github.com> Date: Fri, 13 Sep 2024 15:03:10 +0930 Subject: [PATCH] incl: add a debug message to indicate end of init --- src/SEQTA.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/SEQTA.ts b/src/SEQTA.ts index 0c4f18f1..060510d6 100644 --- a/src/SEQTA.ts +++ b/src/SEQTA.ts @@ -54,6 +54,7 @@ async function init() { if (hasSEQTAText && hasSEQTATitle && !IsSEQTAPage) { IsSEQTAPage = true console.log('[BetterSEQTA+] Verified SEQTA Page') + const documentLoadStyle = document.createElement('style') documentLoadStyle.textContent = documentLoadCSS document.head.appendChild(documentLoadStyle) @@ -77,7 +78,7 @@ async function init() { document.head.appendChild(injectedStyle) } } - + console.log('[BetterSEQTA+] Successfully initalised BetterSEQTA+, starting to load assets.') main() } catch (error: any) { console.error(error) @@ -2496,4 +2497,4 @@ async function CheckForMenuList() { } catch (error) { return; } -} \ No newline at end of file +}