From a02db5aba594ef4bcaa6726317a6fbeeb7aa611d Mon Sep 17 00:00:00 2001 From: Antoine H Date: Sat, 5 Dec 2020 20:28:33 +0100 Subject: [PATCH] Mini Fix for Exception --- Assets/Scripts/Consumable.cs | 2 +- Assets/Scripts/Tavernkeeper_controller.cs | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Assets/Scripts/Consumable.cs b/Assets/Scripts/Consumable.cs index 247564f..ef97614 100644 --- a/Assets/Scripts/Consumable.cs +++ b/Assets/Scripts/Consumable.cs @@ -1,7 +1,7 @@ using System.Collections; using System.Collections.Generic; using UnityEngine; -using System; +using System; //Exceptions //Represents consumable : sprite and informations public class Consumable //: MonoBehaviour diff --git a/Assets/Scripts/Tavernkeeper_controller.cs b/Assets/Scripts/Tavernkeeper_controller.cs index 1fb3733..b946641 100644 --- a/Assets/Scripts/Tavernkeeper_controller.cs +++ b/Assets/Scripts/Tavernkeeper_controller.cs @@ -1,6 +1,7 @@ using System.Collections; using System.Collections.Generic; using UnityEngine; +using System; //Exceptions [RequireComponent(typeof(Rigidbody))] [RequireComponent(typeof(Animator))]