remove ram requirements from joining factinos

This commit is contained in:
Olivier Gagnon 2021-09-07 13:22:39 -04:00
parent f7adadd671
commit d0cb0e3f5b
2 changed files with 5 additions and 8 deletions

File diff suppressed because one or more lines are too long

@ -2886,8 +2886,7 @@ export function checkForFactionInvitations() {
!bitrunnersFac.isBanned &&
!bitrunnersFac.isMember &&
bitrunnersServer.backdoorInstalled &&
!bitrunnersFac.alreadyInvited &&
homeComp.maxRam >= 128
!bitrunnersFac.alreadyInvited
) {
invitedFactions.push(bitrunnersFac);
}
@ -2902,8 +2901,7 @@ export function checkForFactionInvitations() {
!theblackhandFac.isBanned &&
!theblackhandFac.isMember &&
blackhandServer.backdoorInstalled &&
!theblackhandFac.alreadyInvited &&
homeComp.maxRam >= 64
!theblackhandFac.alreadyInvited
) {
invitedFactions.push(theblackhandFac);
}
@ -2918,8 +2916,7 @@ export function checkForFactionInvitations() {
!nitesecFac.isBanned &&
!nitesecFac.isMember &&
nitesecServer.backdoorInstalled &&
!nitesecFac.alreadyInvited &&
homeComp.maxRam >= 32
!nitesecFac.alreadyInvited
) {
invitedFactions.push(nitesecFac);
}