diff --git a/src/main/java/fr/iut_fbleau/info/but3/automation/rock_paper_scissors/play/domain/Move.java b/src/main/java/fr/iut_fbleau/info/but3/automation/rock_paper_scissors/play/domain/Move.java index 7cf3342..34c1f20 100644 --- a/src/main/java/fr/iut_fbleau/info/but3/automation/rock_paper_scissors/play/domain/Move.java +++ b/src/main/java/fr/iut_fbleau/info/but3/automation/rock_paper_scissors/play/domain/Move.java @@ -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; }; } }