From de12c43f7427563d92e497e7a12be7899a3f6360 Mon Sep 17 00:00:00 2001 From: Die4Ever Date: Sat, 25 Nov 2023 20:39:45 -0600 Subject: [PATCH] installer fix DeusExe.u for kentie --- installer/Install/Install.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/installer/Install/Install.py b/installer/Install/Install.py index bf83284d3..d6b163527 100644 --- a/installer/Install/Install.py +++ b/installer/Install/Install.py @@ -119,9 +119,12 @@ def InstallVanilla(system:Path, settings:dict, speedupfix:bool, Vulkan:bool, OGL Mkdir((dxrroot / 'Maps'), exist_ok=True, parents=True) Mkdir((dxrroot / 'System'), exist_ok=True, parents=True) CopyPackageFiles('vanilla', gameroot, ['DeusEx.u']) - CopyPackageFiles(None, gameroot, ['DeusExe.u']) # kentie needs this, copy it into the regular System folder CopyD3DRenderers(system) + if kentie: # kentie needs this, copy it into the regular System folder, doesn't hurt if you don't need it + deusexeu = GetSourcePath() / '3rdParty' / "DeusExe.u" + CopyTo(deusexeu, system / 'DeusExe.u') + FemJCu = GetSourcePath() / '3rdParty' / "FemJC.u" CopyTo(FemJCu, dxrroot / 'System' / 'FemJC.u')