aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Leah Alpert <lalpert@mit.edu>2011-08-26 19:59:35 -0700
committerGravatar Leah Alpert <lalpert@mit.edu>2011-08-26 19:59:35 -0700
commit960b77749e46b605970ae16d6ad9d2d7420546b4 (patch)
treebe822375c5aa8402e6972eed6172ed9f5f8a279c
parente63267bae70b0908c9dfac0cdc330356fc041796 (diff)
Fixed time limit to be 3 minutes
-rw-r--r--tetris.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tetris.py b/tetris.py
index 57112d7..4d3bb8f 100644
--- a/tetris.py
+++ b/tetris.py
@@ -242,7 +242,7 @@ class TetrisGame(object):
def handle_input(self):
game_on = True
- TIME_LIMIT = 3*6
+ TIME_LIMIT = 3*60
start_time = time()
drop_time = time()
while game_on: