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')