From efdaf970074e8c091e9387013e92f2e515966748 Mon Sep 17 00:00:00 2001 From: Simon Cross Date: Sat, 10 Sep 2016 21:06:19 +0200 Subject: [PATCH] Specify night length in hours. --- tabakrolletjie/constants.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tabakrolletjie/constants.py b/tabakrolletjie/constants.py index 6ddfd9f..0ea58f5 100644 --- a/tabakrolletjie/constants.py +++ b/tabakrolletjie/constants.py @@ -19,6 +19,8 @@ FPS = 30 # Night length in ticks NIGHT_LENGTH = 1500 +# Night length in hours +NIGHT_LENGTH_HOURS = 12 # Pymunk categories OBSTACLE_CATEGORY = 1 << 0 -- 2.34.1