Skip to content

Commit

Permalink
fix remaining coven not showing on ejection
Browse files Browse the repository at this point in the history
  • Loading branch information
impostor4291 authored Jan 15, 2025
1 parent 31a3dff commit 37ee338
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Patches/MeetingHudPatch.cs
Original file line number Diff line number Diff line change
Expand Up @@ -550,9 +550,12 @@ public static void ConfirmEjections(NetworkedPlayerInfo exiledPlayer, bool AntiB
name += string.Format(GetString("NeutralRemain"), neutralnum);
if (Options.ShowNARemainOnEject.GetBool() && apocnum > 0)
name += string.Format(GetString("ApocRemain"), apocnum);
if (Options.ShowCovenRemainOnEject.GetBool() && covennum > 0)
name += string.Format(GetString("CovenRemain"), covennum);
if ((impnum == 0)
&& ((neutralnum == 0) || !Options.ShowNKRemainOnEject.GetBool())
&& ((apocnum == 0) || !Options.ShowNARemainOnEject.GetBool()))
&& ((apocnum == 0) || !Options.ShowNARemainOnEject.GetBool())
&& ((covennum == 0) || !Options.ShowCovenRemainOnEject.GetBool()))
name += comma + GetString("NoImpRemain") + comma + GetString("PotentialThreat");
}
}
Expand Down

0 comments on commit 37ee338

Please sign in to comment.