Browse Source

Increase MRO interval to more realistic levels

Eren Yilmaz 5 years ago
parent
commit
417322095c
1 changed files with 3 additions and 3 deletions
  1. 3 3
      game.py

+ 3 - 3
game.py

@@ -2,8 +2,8 @@ from lib.db_log import DBLog
 from util import random_chars
 
 CURRENCY_NAME = "₭ollar"
-MRO_INTERVAL = 3 * 3600 # TODO somewhere expose this to the client, maybe in a tender calendar
-MRO_RUNNING_TIME = 6 * 3600  # TODO somewhere expose this to the client, maybe in a tender calendar
+MRO_INTERVAL = 7 * 24 * 3600
+MRO_RUNNING_TIME = 7 * 24 * 3600
 CURRENCY_SYMBOL = "₭"
 MINIMUM_ORDER_AMOUNT = 1
 DEFAULT_ORDER_EXPIRY = 43200
@@ -18,4 +18,4 @@ BANK_NAME = 'bank'
 
 
 def random_ownable_name():
-    return random_chars(6)
+    return random_chars(6)