Skip to content

Commit 335d701

Browse files
committed
Fix guessing
1 parent 5c7c4f4 commit 335d701

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Monika After Story/game/zz_hangman.rpy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -643,7 +643,7 @@ label mas_hangman_game_loop:
643643
else:
644644
$ guesses += 1
645645
python:
646-
if guess in word:
646+
if guess in word.lower():
647647
for index in range(0,len(word)):
648648
if guess == word[index].lower():
649649
display_word[index] = word[index]

0 commit comments

Comments
 (0)