diff --git a/src/games/Matrix/logic.js b/src/games/Matrix/logic.js index c20e4cc..7c340b5 100644 --- a/src/games/Matrix/logic.js +++ b/src/games/Matrix/logic.js @@ -48,7 +48,6 @@ export function checkMove (target, state) { } } - if(successes === state.sequence.curr) { resault = "WIN"; } @@ -56,7 +55,6 @@ export function checkMove (target, state) { if(fails >= getMaxFails(state.sequence.curr, state.maxFails)) { resault = "LOSE"; } - - + return resault; } \ No newline at end of file