Compare commits

..

No commits in common. "32c67ae4c1e6035679c260b66cf5d0b82d9a2748" and "3e6448d80b56d03226bff00e3f3478a59b7714c7" have entirely different histories.

View File

@ -150,7 +150,7 @@ export const nemesisController: RequestHandler = async (req, res) => {
res.json(response);
} else {
const passcode = getNemesisPasscode(inventory.Nemesis!);
if (passcode[body.position] == body.guess) {
if (passcode[body.position] != body.guess) {
res.end();
} else {
const manifest = getNemesisManifest(inventory.Nemesis!.manifest);