From dc7f75c0d39bae434898e73b50c9a8c8d32fa4fa Mon Sep 17 00:00:00 2001 From: Connie Hong Date: Wed, 9 Jan 2019 15:10:04 -0800 Subject: [PATCH] mess up move right function --- fish_swimming.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fish_swimming.py b/fish_swimming.py index 7073259..81f9d8d 100644 --- a/fish_swimming.py +++ b/fish_swimming.py @@ -65,7 +65,7 @@ def move_food(): def move_right(): if player.xcor() < MAX_X: x,y = player.pos() - player.goto(x+5,y) + player.goto(x+5,y+5) turtle.onkeypress(move_right,"Right")