correction puit
Some checks failed
rock-paper-scissors/pipeline/head There was a failure building this commit

This commit is contained in:
2025-11-27 10:54:18 +01:00
parent 59c7378784
commit b39bf8b726

View File

@@ -11,7 +11,7 @@ public enum Move {
case ROCK -> other == SCISSORS;
case PAPER -> other == ROCK || other == WELL;
case SCISSORS -> other == PAPER;
case WELL -> other == PAPER;
case WELL -> other == ROCK || other == SCISSORS;
};
}
}