From 067ca1260c855506ed9a489df2ba6221b4227d32 Mon Sep 17 00:00:00 2001 From: kimura Date: Thu, 28 Oct 2021 14:36:11 +0900 Subject: [PATCH] =?UTF-8?q?=E7=A2=BA=E8=AA=8D=E7=94=A8=E3=83=87=E3=82=A4?= =?UTF-8?q?=E3=83=AA=E3=83=BC=E3=83=9F=E3=83=83=E3=82=B7=E3=83=A7=E3=83=B3?= =?UTF-8?q?=E5=89=8A=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- popcorn/Assets/MyGame/Scripts/GameDataObserver.cs | 3 --- 1 file changed, 3 deletions(-) diff --git a/popcorn/Assets/MyGame/Scripts/GameDataObserver.cs b/popcorn/Assets/MyGame/Scripts/GameDataObserver.cs index 472cd82c..5619613b 100644 --- a/popcorn/Assets/MyGame/Scripts/GameDataObserver.cs +++ b/popcorn/Assets/MyGame/Scripts/GameDataObserver.cs @@ -97,9 +97,6 @@ public class GameDataObserver : SingletonMonoBehaviour var targetList = missionList.Where(data => data.Category == MissionCategory.Daily && data.shopLevel <= gameData.ViewedShopLevel); gameData.dailyMissionIdArray = targetList.ToList().RandomChoose(3).Select(data => data.id).ToArray(); -#if UNITY_EDITOR - gameData.dailyMissionIdArray = new List(gameData.dailyMissionIdArray){291}.ToArray(); -#endif gameData.lastDailyMissionSetTime = DateTime.UtcNow.ToBinary(); gameData.dailyLoginCount++; GameDataManager.SaveGameData();