Skip to content

Commit

Permalink
Fix and use hardlink mode (redscript + cybercmd)
Browse files Browse the repository at this point in the history
  • Loading branch information
ZashIn committed Apr 24, 2023
1 parent c5de30b commit 2101b5c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions games/game_cyberpunk2077.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ class Cyberpunk2077Game(BasicGame, mobase.IPluginFileMapper):
_root_mapping_blacklist = {GameDataPath.casefold(), "root", "bin"}

_root_builder_config: dict[str, mobase.MoVariant] = {
"usvfsmode": False, # True, # does not work with CET
"usvfsmode": True,
"linkmode": True,
"backup": True,
"cache": True,
Expand All @@ -101,10 +101,10 @@ class Cyberpunk2077Game(BasicGame, mobase.IPluginFileMapper):
"linkextensions": (
# redscript, red4ext
"dll,exe"
# CET - does NOT work with USVFS writing to overwrite! => copy mode
# CET
",asi,lua,ini"
",sqlite3,json,keep,kark,lua,otf,ttf"
",toml" # redscript + cybercmd
",toml,reds,redscrips,ts,bin,bk" # redscript + cybercmd
),
}

Expand Down

0 comments on commit 2101b5c

Please sign in to comment.