Skip to content

Commit 74fbcd4

Browse files
committed
fix CSV formatting
1 parent 9b85ee0 commit 74fbcd4

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

WzVisualizer/IO/BinData.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,9 @@ public override string ToString() {
3636
}
3737

3838
prop = prop.Replace("\t", "");
39+
// replacing strings fucks up some properties that represent speech
40+
// but more often than not they are indented properties that need to be flattened
41+
prop = prop.Replace(" ", "");
3942

4043
if (prop.Length > 0) {
4144
str += $"{prop};";

0 commit comments

Comments
 (0)