Back to main page
summaryrefslogtreecommitdiff
path: root/main.py
diff options
context:
space:
mode:
authorMax <mahn.maxwell@gmail.com>2021-10-18 13:59:46 -0400
committerMax <mahn.maxwell@gmail.com>2021-10-18 13:59:46 -0400
commitb4096111891cebd274d746384ace25c2a66d7f99 (patch)
treefdc8c73921cf6c8e3aed9aa3fda198bf6adedc2a /main.py
parentb568818085907f2d377a70ae7a49edcaaa9845fc (diff)
fix j not working
Diffstat (limited to 'main.py')
-rw-r--r--main.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/main.py b/main.py
index 49b58a9..447ca95 100644
--- a/main.py
+++ b/main.py
@@ -7,7 +7,7 @@ key_left = [104, 97]
# l d
key_right = [108, 100]
# j s
-key_down = [39, 115]
+key_down = [106, 115]
# k w
key_up = [107, 119]
@@ -167,6 +167,7 @@ while True:
MoveUp()
elif userin in key_down:
MoveDown()
+
try:
SpawnBlock()
except: