Skip to content

Commit

Permalink
Update CharaEvent.cs
Browse files Browse the repository at this point in the history
added reset since it seems to affect at least the teacher in opening cutscene
  • Loading branch information
jalil29 committed Feb 14, 2021
1 parent 09c9753 commit 3edb71f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/CharaEvent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ protected override void OnReload(GameMode currentGameMode) //from KKAPI.Chara wh
ExpandedOutfit.ResetMaker.Value = false;
}
}
if (ChaControl.sex == 1 && (GameMode.Maker == currentGameMode || !OutfitDecider.ProcessedNames.Contains(ChaControl.fileParam.fullname)))//run the following if female and unprocessed
if (ChaControl.sex == 1 && (GameMode.Maker == currentGameMode || !OutfitDecider.ProcessedNames.Contains(ChaControl.fileParam.fullname) || OutfitDecider.Reset))//run the following if female and unprocessed
{
if (currentGameMode == GameMode.MainGame || ExpandedOutfit.ChangeOutfit.Value && GameMode.Maker == currentGameMode)
{
Expand Down

0 comments on commit 3edb71f

Please sign in to comment.