Skip to content

Commit 4a9ae08

Browse files
committed
Update 2nd player controls (TRON - Multiplayer)
1 parent 7079923 commit 4a9ae08

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

TRON (2 Player)/main.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ def draw():
5757
turtle.listen()
5858
turtle.onkey(lambda: p1aim.rotate(90), 'a')
5959
turtle.onkey(lambda: p1aim.rotate(-90), 'd')
60-
turtle.onkey(lambda: p2aim.rotate(90), 'j')
61-
turtle.onkey(lambda: p2aim.rotate(-90), 'l')
60+
turtle.onkey(lambda: p2aim.rotate(90), 'Right')
61+
turtle.onkey(lambda: p2aim.rotate(-90), 'Left')
6262

6363
draw()
6464

0 commit comments

Comments
 (0)