Skip to content

Commit

Permalink
1.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
IngoHHacks committed May 11, 2023
1 parent 8793783 commit 9b08745
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@
### GV 1.56:

## Release 1.2.4
- Fixed Thunderstore version removing mappings.
- `characters` in promos is now required to be a list, or an integer prefixed by `:` for a list from 1 to the specified number.
- Fixed Thunderstore version removing mappings.
- Fixed female face mappings.
- Added exceptions to the meta and mappings file loaders.

## Release 1.2.3
Expand Down
4 changes: 2 additions & 2 deletions Saves/BetterCostumeData.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ public static BetterCostumeData FromRegularCostumeData(Costume costume)
bcd.textureC[i] = "Custom/" + material;
} else if (i == 3 && costume.texture[i] < -VanillaCounts.FaceFemaleCount)
{
var index = -costume.texture[i] - VanillaCounts.KneepadCount - 1;
var material = ContentMappings.ContentMap.KneepadNameMap[index];
var index = -costume.texture[i] - VanillaCounts.FaceFemaleCount - 1;
var material = ContentMappings.ContentMap.FaceFemaleNameMap[index];
bcd.textureC[i] = "Custom/" + material;
}
else if (i == 14 && costume.texture[i] < -VanillaCounts.SpecialFootwearCount)
Expand Down

0 comments on commit 9b08745

Please sign in to comment.