add log that should have been there in the first place

This commit is contained in:
Cat Flynn 2021-02-15 23:11:29 +00:00
parent 4013f6ef0c
commit 9eea5cd4d5
1 changed files with 2 additions and 0 deletions

View File

@ -61,9 +61,11 @@ public static partial class DialogueDatabase
return 1; return 1;
} }
Debug.Log($":: importing dialogue");
var sb = new StringBuilder(); var sb = new StringBuilder();
foreach (var row in values) foreach (var row in values)
{ {
Debug.Log($"{row[0]} {row[1]}");
sb.AppendLine($"{row[0]},{row[1]},"); sb.AppendLine($"{row[0]},{row[1]},");
} }