From fbad18b2c162ef5be227354742aaa424f0b17a58 Mon Sep 17 00:00:00 2001 From: Elizabeth1998 <31674423+Elizabeth1998@users.noreply.github.com> Date: Mon, 7 Oct 2019 15:46:37 -0400 Subject: [PATCH 1/3] Update game.html --- game.html | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/game.html b/game.html index 534e5d6..8b13789 100644 --- a/game.html +++ b/game.html @@ -1,18 +1 @@ -h1{ - text-align:center; - font-family:'Baloo Da', cursive; ; -} -h3{ - text-align:center; - font-family:'Baloo Da', cursive; -} - -body{ - background:#27AEE3; -} - -img{ - margin-left:50%; - margin-right:50%; -} \ No newline at end of file From 1520443ed3b51d5431fe1985c94cc1c7c8b62072 Mon Sep 17 00:00:00 2001 From: bmvcbr Date: Tue, 29 Oct 2019 19:05:58 -0400 Subject: [PATCH 2/3] changed number of turns to 11 --- game.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game.py b/game.py index a24a7ce..fe24c71 100644 --- a/game.py +++ b/game.py @@ -22,7 +22,7 @@ guesses = '' #determine the number of turns -turns = 10 +turns = 11 # Create a while loop From 0772529129c025fed8dbc0bb494f11a70561f026 Mon Sep 17 00:00:00 2001 From: bmvcbr Date: Tue, 29 Oct 2019 19:56:47 -0400 Subject: [PATCH 3/3] changed message if char is not in word --- game.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game.py b/game.py index fe24c71..79aed01 100644 --- a/game.py +++ b/game.py @@ -44,7 +44,7 @@ else: # if not found, print a dash - print ("_"), + print ("not in word :("), # and increase the failed counter with one failed += 1