From 90dca9072e79337b5f3797769511a750aadbb1d0 Mon Sep 17 00:00:00 2001 From: Dan Albert Date: Sat, 22 May 2021 01:02:42 -0700 Subject: [PATCH] Change default mission duration to 60 minutes. This seems like it works better for the number of missions we usually frag, plus the fact that players will almost always choose an ASAP package. --- game/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game/settings.py b/game/settings.py index cda2bc79..c853b513 100644 --- a/game/settings.py +++ b/game/settings.py @@ -27,7 +27,7 @@ class Settings: default_start_type: str = "Cold" # Mission specific - desired_player_mission_duration: timedelta = timedelta(minutes=90) + desired_player_mission_duration: timedelta = timedelta(minutes=60) # Campaign management automate_runway_repair: bool = False