diff --git a/src/engine.tsx b/src/engine.tsx index b49d026a8..a421ea2f3 100644 --- a/src/engine.tsx +++ b/src/engine.tsx @@ -160,7 +160,7 @@ const Engine: { updateActiveScriptsDisplay: 5, createProgramNotifications: 10, augmentationsNotifications: 10, - checkFactionInvitations: 100, + checkFactionInvitations: 10, passiveFactionGrowth: 5, messages: 150, mechanicProcess: 5, // Process Bladeburner @@ -188,7 +188,7 @@ const Engine: { for (const invitedFaction of invitedFactions) { inviteToFaction(invitedFaction); } - Engine.Counters.checkFactionInvitations = 100; + Engine.Counters.checkFactionInvitations = 10; } if (Engine.Counters.passiveFactionGrowth <= 0) { diff --git a/src/ui/GameRoot.tsx b/src/ui/GameRoot.tsx index c2bbd241e..5c68fe110 100644 --- a/src/ui/GameRoot.tsx +++ b/src/ui/GameRoot.tsx @@ -59,7 +59,6 @@ import { AlertManager } from "./React/AlertManager"; import { PromptManager } from "./React/PromptManager"; import { FactionInvitationManager } from "../Faction/ui/FactionInvitationManager"; import { calculateAchievements } from "../Achievements/Achievements"; - import { RecoveryMode, RecoveryRoot } from "./React/RecoveryRoot"; import { AchievementsRoot } from "../Achievements/AchievementsRoot"; import { ErrorBoundary } from "./ErrorBoundary";