add log that should have been there in the first place
This commit is contained in:
parent
4013f6ef0c
commit
9eea5cd4d5
|
@ -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]},");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue