Skip to content

Commit b1f5ccd

Browse files
committed
Fixed the cipher puzzle answer so it now appears during gameplay
1 parent 997ffe1 commit b1f5ccd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/escapegame/CipherPuzzleController.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,14 +151,14 @@ private void configureForDifficulty(String difficulty) {
151151
break;
152152
case "HARD":
153153
CIPHER_TEXT = "JSHWDUYNTS";
154-
PROMPT = "Decode the cipher (hard). Use Caesar shift -5.";
154+
PROMPT = "Decode the cipher JSHWDUYNTS shift -5.";
155155
HINTS = new String[] {
156156
"Still a Caesar-style cipher; shift letters back by 5.",
157157
"The decoded word is a common color or short noun.",
158158
"Try shifting letters backward by 5 positions in the alphabet."
159159
};
160160
ACCEPTED_ANSWERS = new String[] {
161-
"encoding", "an encoding", "the encoding"
161+
"encryption", "an encryption", "the encryption"
162162
};
163163
attemptsLeft = 2;
164164
hintsLeft = 1;

0 commit comments

Comments
 (0)