From 4a5ec67596414c4afaf861b3f269c022b6c1d59d Mon Sep 17 00:00:00 2001 From: takahiro kawanaka Date: Fri, 14 Jun 2024 00:21:55 +0900 Subject: [PATCH] Revert "Fixed a bug that caused incomplete character changes (#29)" This reverts commit f85bc8da15afbab59a67b8d173df3fb7ef8e78d1. --- Core_OverlayMods/Clothes/KoiClothesOverlayController.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Core_OverlayMods/Clothes/KoiClothesOverlayController.cs b/Core_OverlayMods/Clothes/KoiClothesOverlayController.cs index ce06ff4..61a6b08 100644 --- a/Core_OverlayMods/Clothes/KoiClothesOverlayController.cs +++ b/Core_OverlayMods/Clothes/KoiClothesOverlayController.cs @@ -510,8 +510,7 @@ private void KickRefreshAllTexturesCo() private IEnumerator RefreshAllTexturesCo() { - yield return null; - while ( --_delayRefreshAllTexturesCo > 0 ) + while( --_delayRefreshAllTexturesCo > 0 ) yield return null; RefreshAllTextures(); }