From 6747a509ff81123e2da52488710d78c67f2cf049 Mon Sep 17 00:00:00 2001 From: Olivier Gagnon Date: Wed, 5 May 2021 21:36:43 -0400 Subject: [PATCH] Reword the Milestones --- src/Milestones/Milestones.ts | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/Milestones/Milestones.ts b/src/Milestones/Milestones.ts index 856c070a9..82033b735 100644 --- a/src/Milestones/Milestones.ts +++ b/src/Milestones/Milestones.ts @@ -30,7 +30,7 @@ export const Milestones: Milestone[] = [ }, }, { - title: "Join the faction hinted at in j1.msg", + title: "Join the faction hinted at in csec-test.msg", fulfilled: (p: IPlayer): boolean => { return p.factions.includes("CyberSec"); }, @@ -42,7 +42,7 @@ export const Milestones: Milestone[] = [ }, }, { - title: "Join the faction hinted at in j2.msg", + title: "Join the faction hinted at in nitesec-test.msg", fulfilled: (p: IPlayer): boolean => { return p.factions.includes("NiteSec"); }, @@ -66,7 +66,7 @@ export const Milestones: Milestone[] = [ }, }, { - title: "Join the faction hinted at in j4.msg", + title: "Join the faction hinted at in 19dfj3l1nd.msg", fulfilled: (p: IPlayer): boolean => { return p.factions.includes("BitRunners"); }, @@ -78,8 +78,9 @@ export const Milestones: Milestone[] = [ }, }, { - title: "Join the final faction", + title: "Complete fl1ght.exe", fulfilled: (p: IPlayer): boolean => { + // technically wrong but whatever return p.factions.includes("Daedalus"); }, },