diff --git a/src/Faction/ui/FactionsRoot.tsx b/src/Faction/ui/FactionsRoot.tsx index 858e51156..0c7942bd8 100644 --- a/src/Faction/ui/FactionsRoot.tsx +++ b/src/Faction/ui/FactionsRoot.tsx @@ -154,7 +154,7 @@ const FactionElement = (props: FactionElementProps): React.ReactElement => { )} - {!props.faction.isMember && facInfo.enemies.length > 0 && ( + {facInfo.enemies.length > 0 && ( @@ -164,7 +164,7 @@ const FactionElement = (props: FactionElementProps): React.ReactElement => {
  • {enemy}
  • ))} - Joining this Faction will prevent you from joining its enemies + {!props.faction.isMember && <>Joining this Faction will prevent you from joining its enemies} } > diff --git a/src/Faction/ui/Info.tsx b/src/Faction/ui/Info.tsx index 5d4636de4..18b294810 100644 --- a/src/Faction/ui/Info.tsx +++ b/src/Faction/ui/Info.tsx @@ -52,6 +52,12 @@ export function Info(props: IProps): React.ReactElement { return ( <> {props.factionInfo.infoText} + {props.factionInfo.enemies.length > 0 && ( + +
    + This faction is enemies with: {props.factionInfo.enemies.join(", ")}. +
    + )} -------------------------