From b39bf8b726ec80a8055e23872a6634c23c44847a Mon Sep 17 00:00:00 2001 From: dick Date: Thu, 27 Nov 2025 10:54:18 +0100 Subject: [PATCH] correction puit --- .../but3/automation/rock_paper_scissors/play/domain/Move.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }; } }