Commit 72ef4f19 by BellCodeEditor

save project

parent fb073721
Showing with 2 additions and 4 deletions
...@@ -32,15 +32,13 @@ while True: ...@@ -32,15 +32,13 @@ while True:
if jumpS == "run": if jumpS == "run":
jumpS = "up" jumpS = "up"
if jumpS == "up": if jumpS == "up":
if y>150: if yy > 0:
if yy>0:
y-=yy y-=yy
yy-=2 yy-=2
else: else:
jumpS = "down" jumpS = "down"
if jumpS == "down": if jumpS == "down":
if y<400: if yy <= 30:
if yy <=30:
y+=yy y+=yy
yy+=2 yy+=2
else: else:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment