From 14b4722210bad244420e492b846955e6869b744c Mon Sep 17 00:00:00 2001 From: TheAimMan <147098375+TheAimMan@users.noreply.github.com> Date: Fri, 3 Nov 2023 21:12:08 -0400 Subject: [PATCH] Clear Stanek before applying entropy on prestige (#907) --- src/Prestige.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Prestige.ts b/src/Prestige.ts index 9afb20595..fa5cff3ea 100755 --- a/src/Prestige.ts +++ b/src/Prestige.ts @@ -98,6 +98,8 @@ export function prestigeAugmentation(): void { Player.reapplyAllSourceFiles(); Player.hp.current = Player.hp.max; + staneksGift.prestigeAugmentation(); + // Apply entropy from grafting Player.applyEntropy(Player.entropy); @@ -160,7 +162,6 @@ export function prestigeAugmentation(): void { Factions[FactionName.ChurchOfTheMachineGod].isBanned = true; } } - staneksGift.prestigeAugmentation(); // Hear rumors after all invites/bans for (const factionName of maintainRumors) Player.receiveRumor(factionName);