From d1fa6bd70656045d7e48bec690aba763fff99ace Mon Sep 17 00:00:00 2001 From: RhenaudTheLukark Date: Thu, 16 May 2019 01:56:55 +0200 Subject: [PATCH] Hotfix: Remove unnecessary Debug --- Assets/Scripts/Lua/CLRBindings/Overworld/LuaGeneralOW.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/Assets/Scripts/Lua/CLRBindings/Overworld/LuaGeneralOW.cs b/Assets/Scripts/Lua/CLRBindings/Overworld/LuaGeneralOW.cs index 83618aa85..57be3fcef 100644 --- a/Assets/Scripts/Lua/CLRBindings/Overworld/LuaGeneralOW.cs +++ b/Assets/Scripts/Lua/CLRBindings/Overworld/LuaGeneralOW.cs @@ -95,7 +95,6 @@ [CYFEventFunction] public void SetChoice(DynValue choices, string question = "", //Add the text to the text to print then the SetChoice function with its parameters for (int i = 0; i < finalText.Count; i++) { - Debug.Log(finalText[i]); if (finalText[i] != "\t") textMsgChoice.AddToText(finalText[i] + ((i == finalText.Count - 1) ? "" : "\n")); }