Skip to content

Commit

Permalink
installer fix DeusExe.u for kentie
Browse files Browse the repository at this point in the history
  • Loading branch information
Die4Ever committed Nov 26, 2023
1 parent d079f39 commit de12c43
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion installer/Install/Install.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')

Expand Down

0 comments on commit de12c43

Please sign in to comment.