From ec0350984cd4c95db1290f9c211d1e5134e38039 Mon Sep 17 00:00:00 2001 From: borisflagell Date: Mon, 23 May 2022 17:31:28 +0200 Subject: [PATCH] INFILTRATION: FIX#3720 On Infiltration's reward screen, when trading for rep : SoA reward are not longer given out when select "none" in the faction's dropdownmenu. --- src/Infiltration/ui/Victory.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Infiltration/ui/Victory.tsx b/src/Infiltration/ui/Victory.tsx index c73993ae1..51a1d2f71 100644 --- a/src/Infiltration/ui/Victory.tsx +++ b/src/Infiltration/ui/Victory.tsx @@ -44,8 +44,8 @@ export function Victory(props: IProps): React.ReactElement { } function trade(): void { - handleInfiltrators(); if (faction === "none") return; + handleInfiltrators(); Factions[faction].playerReputation += repGain; quitInfiltration(); }