Skip to content

Commit 2d96dea

Browse files
committed
fixing typos
1 parent 0491bc5 commit 2d96dea

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,7 @@
11
# FijiGuessWho
22
Guess who but you can add photos into it
3+
4+
How to play:
5+
6+
The player on screen will take their turn.
7+
The opponent has the ability to toggle and view their mystery card to better help give the current player accurate answers.

main.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -121,10 +121,10 @@ def draw_backgrounds(current_player, toggle_names_condition, ask_condition, gues
121121
screen.blit(scaled_image, (270, 10))
122122
else:
123123
toggle_hidden_face_button = pygame.draw.rect(screen, gray, [30, 10, 195, 75], 0, 8)
124-
title_text = small_font.render("Toggle Secret", True, white)
124+
title_text = small_font.render("Mystery Card", True, white)
125125
screen.blit(title_text, (40, 20))
126-
title_text = small_font.render("Face", True, white)
127-
screen.blit(title_text, (100, 55))
126+
title_text = small_font.render("of Opponent", True, white)
127+
screen.blit(title_text, (45, 55))
128128
#quit button
129129
quit_button = pygame.draw.rect(screen, gray, [1135, 10, WIDTH-30-1135, 75], 0, 8)
130130
title_text = title_font.render("Quit", True, white)

0 commit comments

Comments
 (0)