From c023671557600b7f7598f9bb2c5b107543560e80 Mon Sep 17 00:00:00 2001 From: dexy Date: Fri, 29 Jul 2022 22:46:48 +1000 Subject: [PATCH] Fix for patchday27ng duplicating everything --- CodeWalker.Core/GameFiles/GameFileCache.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CodeWalker.Core/GameFiles/GameFileCache.cs b/CodeWalker.Core/GameFiles/GameFileCache.cs index 3f7202f..45cefe4 100644 --- a/CodeWalker.Core/GameFiles/GameFileCache.cs +++ b/CodeWalker.Core/GameFiles/GameFileCache.cs @@ -598,6 +598,10 @@ namespace CodeWalker.GameFiles string dlcname = GetDlcNameFromPath(dlcfile.Path); + if (dlcname == "patchday27ng") + { + continue; //hack to fix map getting completely broken by this DLC.. but why? need to investigate further! + }