From a00a37d273f705ede32a518a6fc0a83875d10e52 Mon Sep 17 00:00:00 2001 From: kimura Date: Fri, 15 Apr 2022 09:39:03 +0900 Subject: [PATCH] =?UTF-8?q?=E5=A4=A7=E9=87=8F=E6=B3=A8=E6=96=87=E3=83=87?= =?UTF-8?q?=E3=83=90=E3=83=83=E3=82=B0=E3=81=AE=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../MyGame/Scenes/DebugOption/Scripts/DebugOptionManager.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/popcorn/Assets/MyGame/Scenes/DebugOption/Scripts/DebugOptionManager.cs b/popcorn/Assets/MyGame/Scenes/DebugOption/Scripts/DebugOptionManager.cs index 4e95b636..a49d5729 100644 --- a/popcorn/Assets/MyGame/Scenes/DebugOption/Scripts/DebugOptionManager.cs +++ b/popcorn/Assets/MyGame/Scenes/DebugOption/Scripts/DebugOptionManager.cs @@ -230,6 +230,7 @@ public class DebugOptionManager : MonoBehaviour { // オーダー達成状況をリセット gameData.DeliveredOrder.Clear(); + gameData.AchievedOrderLevel = nextOrderList[x].shopLevel - 1; // 1つ前のオーダーを現在のオーダーに設定 var prevOrder = nextOrderList[(len + x - 1) % len]; gameData.OrderIdInProgress = gameData.CancelOrderId = prevOrder.id;