Skip to content

Commit 8ad3bb6

Browse files
committed
Fix 「」 quotation marks again
1 parent 9c037ec commit 8ad3bb6

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

Patch.cs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,11 @@ public static void Novel_SetMssageCommand(ref int lineNum, ref string line, ref
7777
string text_replace;
7878
if (Translation.chapterDicts.ContainsKey(currentAdvId) &&
7979
Translation.chapterDicts[currentAdvId].TryGetValue(line, out text_replace))
80-
line = text_replace.IsNullOrWhiteSpace() ? line : text_replace;
80+
{
81+
text_replace = text_replace.IsNullOrWhiteSpace() ? line : text_replace;
82+
text_replace = text_replace.Replace("「", "『").Replace("」", "』");
83+
line = text_replace;
84+
}
8185
}
8286
}
8387

0 commit comments

Comments
 (0)