diff --git a/popcorn/Assets/MyGame/Scenes/DebugOption/Scripts/DebugOptionManager.cs b/popcorn/Assets/MyGame/Scenes/DebugOption/Scripts/DebugOptionManager.cs index e7a0781a..04ee28ec 100644 --- a/popcorn/Assets/MyGame/Scenes/DebugOption/Scripts/DebugOptionManager.cs +++ b/popcorn/Assets/MyGame/Scenes/DebugOption/Scripts/DebugOptionManager.cs @@ -252,11 +252,15 @@ public class DebugOptionManager : MonoBehaviour .DistinctUntilChanged() .Subscribe(x => { + gameData.AutoCookUsesCount = 0; gameData.AutoCookLevel = autoCookList[x].level; // level1ならチュートリアル復活 if (gameData.AutoCookLevel == 1) { gameData.FinishedFlags &= ~TutorialFlag.AutoCook; + gameData.AutoCookFinishTime = DateTime.UtcNow.ToBinary(); + gameData.AutoCookProducts = Array.Empty(); + gameData.AutoCookUsesCount = 0; } }).AddTo(this);