Code:
diff -urp project-gorgon-launcher-1.1.1.broken/pglauncher/patcher.py project-gorgon-launcher-1.1.1/pglauncher/patcher.py
--- project-gorgon-launcher-1.1.1.broken/pglauncher/patcher.py 2016-08-08 17:30:18.000000000 -0400
+++ project-gorgon-launcher-1.1.1/pglauncher/patcher.py 2017-02-09 12:18:05.663593184 -0500
@@ -566,11 +566,11 @@ class Patcher:
# Do it
self.logger.info("Downloading file: %s (%d/%d)" % (asset_name, (chunk_idx + 1), chunk_cnt))
url = self.URL_GAME_FILE % (self.get_game_version(), asset_name, chunk_idx)
- if asset_name.endswith(".dll") \
- or asset_name.endswith(".resS") \
- or asset_name.endswith(".exe"):
- # Somehow files with these extensions require an '.dat' ending appended to them
- url += '.dat'
+ #if asset_name.endswith(".dll") \
+ #or asset_name.endswith(".resS") \
+ #or asset_name.endswith(".exe"):
+ # Somehow files with these extensions require an '.dat' ending appended to them
+ url += '.dat'
self._fetch_with_progress(url, callback_data, chunk["CompressedSize"],
compressed_total, compressed_offset, asset_name)