From 9585913e0af9c291eda993e3f87f27c93df48232 Mon Sep 17 00:00:00 2001 From: Jesse Clark Date: Sat, 4 Nov 2023 22:07:05 -0700 Subject: [PATCH] FACTIONS: fix invite requirement for slum snakes (#915) --- src/Faction/FactionInfo.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Faction/FactionInfo.tsx b/src/Faction/FactionInfo.tsx index a7746563e..89fa1201f 100644 --- a/src/Faction/FactionInfo.tsx +++ b/src/Faction/FactionInfo.tsx @@ -125,7 +125,7 @@ export const FactionInfos: Record = { [FactionName.Daedalus]: new FactionInfo({ infoText: <>Yesterday we obeyed kings and bent our necks to emperors. Today we kneel only to truth., - rumorText: <>Follow the thread., + rumorText: <>Follow the thread. Take fl1ght., inviteReqs: [ haveAugmentations(currentNodeMults.DaedalusAugsRequirement), haveMoney(100e9), @@ -599,7 +599,7 @@ export const FactionInfos: Record = { [FactionName.SlumSnakes]: new FactionInfo({ infoText: <>{FactionName.SlumSnakes} rule!, rumorText: <>Graffiti seen in the slums: “{FactionName.SlumSnakes} rule!”, - inviteReqs: [haveCombatSkills(30), haveMoney(1e6)], + inviteReqs: [haveCombatSkills(30), haveMoney(1e6), haveKarma(-9)], rumorReqs: [haveKarma(-1)], offerFieldWork: true, offerSecurityWork: true,