updated location argument; updated ground units placement during attack operation

This commit is contained in:
Vasyl Horbachenko
2018-09-12 00:20:35 +03:00
parent 262347f8c8
commit 6fb342a42c
3 changed files with 5 additions and 5 deletions

View File

@@ -17,11 +17,11 @@ def base_path() -> str:
global _user_folder
assert _user_folder
openbeta_path = os.path.join(_user_folder, "Saved Games", "DCS.openbeta")
openbeta_path = os.path.join(_user_folder, "DCS.openbeta")
if "--force-stable-DCS" not in sys.argv and os.path.exists(openbeta_path):
return openbeta_path
else:
return os.path.join(_user_folder, "Saved Games", "DCS")
return os.path.join(_user_folder, "DCS")
def _save_file() -> str: