Skip to content

Commit

Permalink
Fixed a bug that caused incomplete character changes (#29)
Browse files Browse the repository at this point in the history
Fixes #27
  • Loading branch information
takahiro0327 authored Jun 10, 2024
1 parent 019ece3 commit f85bc8d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Core_OverlayMods/Clothes/KoiClothesOverlayController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,8 @@ private void KickRefreshAllTexturesCo()

private IEnumerator RefreshAllTexturesCo()
{
while( --_delayRefreshAllTexturesCo > 0 )
yield return null;
while ( --_delayRefreshAllTexturesCo > 0 )
yield return null;
RefreshAllTextures();
}
Expand Down

0 comments on commit f85bc8d

Please sign in to comment.