Preparing version 2.1.0

This commit is contained in:
Khopa 2020-08-20 13:12:26 +02:00
parent 9f3b49a7f5
commit 036874fbf0
3 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
from userdata import logging_config
# Logging setup
VERSION_STRING = "2.0.11"
VERSION_STRING = "2.1.0"
logging_config.init_logging(VERSION_STRING)
import logging

View File

@ -95,7 +95,7 @@ class NewGameWizard(QtWidgets.QWizard):
game.budget = int(game.budget * multiplier)
game.settings.multiplier = multiplier
game.settings.sams = True
game.settings.version = "2.0.11"
game.settings.version = "2.1.0"
if midgame:
game.budget = game.budget * 4 * len(list(conflictTheater.conflicts()))

View File

@ -3,7 +3,7 @@ import pickle
from dcs.mission import Mission
from dcs.planes import A_10C
for terrain in ["nev"]:
for terrain in ["cau"]:
print("Terrain " + terrain)
m = Mission()
m.load_file("./{}_terrain.miz".format(terrain))