Align current time with game time
This commit is contained in:
parent
366917981d
commit
3e22ea83df
1 changed files with 8 additions and 1 deletions
|
|
@ -40,8 +40,15 @@ SERVER_HOSTNAME = "www.howardabrams.com"
|
|||
WEBSOCKET_CLIENT_URL = "https://www.howardabrams.com/ws"
|
||||
|
||||
TIME_ZONE = "PST8PDT"
|
||||
|
||||
TIME_FACTOR = 1.0
|
||||
TIME_GAME_EPOCH = 1747529912
|
||||
|
||||
# from datetime import datetime
|
||||
# from time import mktime
|
||||
# start = datetime.now()
|
||||
# epoch = mktime(start.timetuple())
|
||||
# epoch = epoch - 1 * 86400 - 3 * 3600 - 15 * 60
|
||||
# print(epoch)
|
||||
|
||||
MEDIA_URL = "/cozy/media/"
|
||||
STATIC_URL = "/cozy/static/"
|
||||
|
|
|
|||
Loading…
Reference in a new issue