refactor frontline brief generation

This commit is contained in:
walterroach
2020-10-29 23:39:05 -05:00
parent 5b18b5691d
commit 508ce0fd63
2 changed files with 109 additions and 109 deletions

View File

@@ -90,8 +90,7 @@ class Operation:
def initialize(self, mission: Mission, conflict: Conflict):
self.current_mission = mission
self.conflict = conflict
self.briefinggen = BriefingGenerator(self.current_mission,
self.conflict, self.game)
self.briefinggen = BriefingGenerator(self.current_mission, self.game)
def prepare(self, terrain: Terrain, is_quick: bool):
with open("resources/default_options.lua", "r") as f: