From e3dc867e081466ff50dc87989072c8cf86e8091b Mon Sep 17 00:00:00 2001 From: catloversg <152669316+catloversg@users.noreply.github.com> Date: Wed, 14 Aug 2024 06:04:08 +0700 Subject: [PATCH] UI: Notify players about documentation tab after getting SF1.1 (#1571) --- src/Prestige.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/Prestige.ts b/src/Prestige.ts index ce7d684e3..5fa7c7ef3 100644 --- a/src/Prestige.ts +++ b/src/Prestige.ts @@ -329,4 +329,10 @@ export function prestigeSourceFile(isFlume: boolean): void { resetPidCounter(); setInitialExpForPlayer(); + + if (!isFlume && Player.sourceFiles.size === 1 && Player.sourceFileLvl(1) === 1) { + delayedDialog( + "Congratulations on destroying your first BitNode! Make sure to check the Documentation tab. Many pages are unlocked now.", + ); + } }