Merge pull request #2610 from Dexalt142/fix-exploit-achievement

fix: dev menu achievement name & visibility
This commit is contained in:
hydroflame 2022-01-15 18:24:10 -05:00 committed by GitHub
commit a7d7405e04
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

@ -479,7 +479,7 @@
},
"DEVMENU": {
"ID": "DEVMENU",
"Name": "Exploit: edit",
"Name": "Exploit: you're not meant to access this",
"Description": "Open the dev menu."
}
}

@ -724,6 +724,7 @@ export const achievements: IMap<Achievement> = {
DEVMENU: {
...achievementData["DEVMENU"],
Icon: "SF-1",
Secret: true,
Condition: () => Player.exploits.includes(Exploit.YoureNotMeantToAccessThis),
},
};