Skip to content

Commit c5b124f

Browse files
committed
Support patch 2.2
1 parent cd6ff92 commit c5b124f

File tree

5 files changed

+23
-20
lines changed

5 files changed

+23
-20
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
/archive/source/raw/**/*.json
66
/archive/*.xml
77
/archive/*.zip
8+
/archive/fileTreeState.json
89
/build
910
/dev
1011
/*.log

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@
1010

1111
### Requirements
1212

13-
- Cyberpunk 2077 2.13
14-
- [ArchiveXL](https://github.com/psiberx/cp2077-archive-xl) 1.16.9+
13+
- Cyberpunk 2077 2.2
14+
- [ArchiveXL](https://github.com/psiberx/cp2077-archive-xl) 1.18.0+
1515
- [TweakXL](https://github.com/psiberx/cp2077-tweak-xl) 1.10.4+
16-
- [Codeware](https://github.com/psiberx/cp2077-codeware) 1.12.7+
17-
- [redscript](https://github.com/jac3km4/redscript) 0.5.24+
16+
- [Codeware](https://github.com/psiberx/cp2077-codeware) 1.13.0+
17+
- [redscript](https://github.com/jac3km4/redscript) 0.5.25+
1818

1919
### Installation
2020

scripts/Facade.reds

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import EquipmentEx.OutfitSystem
22

33
public abstract class EquipmentEx {
4-
public static func Version() -> String = "1.2.6";
4+
public static func Version() -> String = "1.2.7";
55
66
public static func Activate(game: GameInstance) {
77
OutfitSystem.GetInstance(game).Activate();

scripts/Overrides/PhotoModePlayerEntityComponent.reds

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,12 @@ private final func OnGameAttach() {
1818
private final func SetupInventory(isCurrentPlayerObjectCustomizable: Bool) {
1919
wrappedMethod(isCurrentPlayerObjectCustomizable);
2020
21-
this.m_paperdollHelper.AddPuppet(this.fakePuppet);
21+
if this.customizable {
22+
this.m_paperdollHelper.AddPuppet(this.fakePuppet);
2223
23-
if this.m_outfitSystem.IsActive() {
24-
this.m_outfitSystem.EquipPuppetOutfit(this.fakePuppet, this.loadingItems);
24+
if this.m_outfitSystem.IsActive() {
25+
this.m_outfitSystem.EquipPuppetOutfit(this.fakePuppet, this.loadingItems);
26+
}
2527
}
2628
}
2729

support/hints/EquipmentEx.toml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,37 @@
11
[[UNRESOLVED_REF]]
2-
id = "ARCHIVEXL_11609"
2+
id = "ARCHIVEXL_11800"
33
span_starts_with = "ArchiveXL"
4-
message = "Install ArchiveXL 1.16.9 or higher"
4+
message = "Install ArchiveXL 1.18.0 or higher"
55

66
[[UNRESOLVED_METHOD]]
7-
id = "ARCHIVEXL_11609"
7+
id = "ARCHIVEXL_11800"
88
span_starts_with = "ArchiveXL"
9-
message = "Install ArchiveXL 1.16.9 or higher"
9+
message = "Install ArchiveXL 1.18.0 or higher"
1010

1111
[[UNRESOLVED_REF]]
1212
id = "TWEAKXL_11004"
1313
span_starts_with = "TweakXL"
1414
message = "Install TweakXL 1.10.4 or higher"
1515

1616
[[UNRESOLVED_FN]]
17-
id = "CODEWARE_11207"
17+
id = "CODEWARE_11300"
1818
span_starts_with = "Print(command)"
19-
message = "Install Codeware 1.12.7 or higher"
19+
message = "Install Codeware 1.13.0 or higher"
2020

2121
[[UNRESOLVED_FN]]
22-
id = "CODEWARE_11207"
22+
id = "CODEWARE_11300"
2323
line_contains = "UTF8StrLower"
24-
message = "Install Codeware 1.12.7 or higher"
24+
message = "Install Codeware 1.13.0 or higher"
2525

2626
[[UNRESOLVED_METHOD]]
27-
id = "CODEWARE_11207"
27+
id = "CODEWARE_11300"
2828
line_contains = "ForgetItemID"
29-
message = "Install Codeware 1.12.7 or higher"
29+
message = "Install Codeware 1.13.0 or higher"
3030

3131
[[UNRESOLVED_TYPE]]
32-
id = "CODEWARE_11207"
32+
id = "CODEWARE_11300"
3333
line_contains = "InMenuPopup"
34-
message = "Install Codeware 1.12.7 or higher"
34+
message = "Install Codeware 1.13.0 or higher"
3535

3636
[[UNRESOLVED_METHOD]]
3737
id = "EQEX_MIX"

0 commit comments

Comments
 (0)