Skip to content

Commit

Permalink
Apply #16 to other games as well
Browse files Browse the repository at this point in the history
  • Loading branch information
ManlyMarco committed Aug 29, 2024
1 parent 2202d79 commit 29dc6a6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/DragAndDrop.AISyoujyo/StudioHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ public void Character_Load(List<string> paths, POINT pos, byte sex)
foreach (var chara in characters)
{
chara.charInfo.fileParam.sex = sex;
chara.oiCharInfo.sex = sex;
chara.ChangeChara(singlePath);
}
}
Expand All @@ -79,6 +80,7 @@ public void Character_Load(List<string> paths, POINT pos, byte sex)
{
var chara = characters[i];
chara.charInfo.fileParam.sex = sex;
chara.oiCharInfo.sex = sex;
chara.ChangeChara(paths[i]);
}
}
Expand Down
2 changes: 2 additions & 0 deletions src/DragAndDrop.HoneySelect2/StudioHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ public void Character_Load(List<string> paths, POINT pos, byte sex)
foreach (var chara in characters)
{
chara.charInfo.fileParam.sex = sex;
chara.oiCharInfo.sex = sex;
chara.ChangeChara(singlePath);
}
}
Expand All @@ -79,6 +80,7 @@ public void Character_Load(List<string> paths, POINT pos, byte sex)
{
var chara = characters[i];
chara.charInfo.fileParam.sex = sex;
chara.oiCharInfo.sex = sex;
chara.ChangeChara(paths[i]);
}
}
Expand Down
2 changes: 2 additions & 0 deletions src/DragAndDrop.KoikatsuSunshine/StudioHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ public void Character_Load(List<string> paths, POINT pos, byte sex)
foreach (var chara in characters)
{
chara.charInfo.fileParam.sex = sex;
chara.oiCharInfo.sex = sex;
chara.ChangeChara(singlePath);
}
}
Expand All @@ -80,6 +81,7 @@ public void Character_Load(List<string> paths, POINT pos, byte sex)
{
var chara = characters[i];
chara.charInfo.fileParam.sex = sex;
chara.oiCharInfo.sex = sex;
chara.ChangeChara(paths[i]);
}
}
Expand Down

0 comments on commit 29dc6a6

Please sign in to comment.