From 76ccdf48ec2eea0a2c2c045e9f58824028d28e82 Mon Sep 17 00:00:00 2001 From: kimura Date: Thu, 7 Oct 2021 09:31:15 +0900 Subject: [PATCH] =?UTF-8?q?=E6=9D=A1=E4=BB=B6=E3=81=8C=E4=B8=80=E8=87=B4?= =?UTF-8?q?=E3=81=97=E3=81=AA=E3=81=8F=E3=81=A6=E3=82=82=E4=BE=8B=E5=A4=96?= =?UTF-8?q?=E3=81=8C=E3=81=A7=E3=81=AA=E3=81=84=E3=82=88=E3=81=86=E3=81=AB?= =?UTF-8?q?=E5=A4=89=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- popcorn/Assets/MyGame/Scenes/Main/Scripts/MissionManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/popcorn/Assets/MyGame/Scenes/Main/Scripts/MissionManager.cs b/popcorn/Assets/MyGame/Scenes/Main/Scripts/MissionManager.cs index b9d188c2..16a21669 100644 --- a/popcorn/Assets/MyGame/Scenes/Main/Scripts/MissionManager.cs +++ b/popcorn/Assets/MyGame/Scenes/Main/Scripts/MissionManager.cs @@ -84,7 +84,7 @@ public class MissionManager : MonoBehaviour case MissionCondition.SaltSalesCount: return gameData.GetTotalSalesByFlavor(2); default: - throw new ArgumentOutOfRangeException(); + return 0; } }