0
0
Fork 0

Have the solve incrementation use the proper config option

This commit is contained in:
Oliver-Akins 2023-02-24 08:29:08 -07:00
parent c84a298569
commit ba386e1247

View file

@ -49,7 +49,7 @@ const route: ServerRoute = {
if (guess === solved) { if (guess === solved) {
won = true; won = true;
} else { } else {
data.incorrect += config.game.incorrect_solve_penalty; data.incorrect += config.game.penalties.solve;
}; };
}; };