We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 820002d commit 0a09171Copy full SHA for 0a09171
2 files changed
CP2077SaveEditor/Resources/AppearanceValues.json
@@ -300,7 +300,9 @@
300
"__silver",
301
"__gold",
302
"__cooper",
303
- "__pink"
+ "__pink",
304
+ "__metal",
305
+ "__metal_rusty"
306
],
307
"FacialScars":
308
[
@@ -312,7 +314,9 @@
312
314
"tribe_03",
313
315
"beatup_01",
316
"beatup_02",
- "seal_01"
317
+ "seal_01",
318
+ "witcher_01",
319
+ "burn_01"
320
321
"BodyScars":
322
CP2077SaveEditor/Utils/AppearanceHelper.cs
@@ -527,7 +527,7 @@ public int Teeth
527
}
528
set
529
{
530
- if (value > 4 || value < 0)
+ if (value > (AppearanceValueLists.Teeth.Count - 1) || value < 0)
531
532
return;
533
0 commit comments