Liga krog3
This commit is contained in:
+1
-1
@@ -10,4 +10,4 @@ class Config:
|
||||
SECRET_KEY = os.getenv('SECRET_KEY', 'your-secret-key-for-sessions')
|
||||
DEBUG = os.getenv('DEBUG', 'False').lower() == 'true'
|
||||
HOST = os.getenv('HOST', '0.0.0.0')
|
||||
PORT = int(os.getenv('PORT', 5000))
|
||||
PORT = int(os.getenv('PORT', 5001))
|
||||
|
||||
+2
-1
@@ -131,7 +131,8 @@ class Tournament:
|
||||
'name': player['name'],
|
||||
'targets': targets,
|
||||
'total_score': 0,
|
||||
'completed': False
|
||||
'completed': False,
|
||||
'joker_selected': False # Track if joker was selected in calculator
|
||||
}
|
||||
|
||||
return results
|
||||
|
||||
Reference in New Issue
Block a user