diff --git a/modules/rpgmakermvmz.py b/modules/rpgmakermvmz.py index 1eb24d7..bd036ea 100644 --- a/modules/rpgmakermvmz.py +++ b/modules/rpgmakermvmz.py @@ -79,7 +79,7 @@ LEAVE = False # FIRSTLINESPEAKERS: Guess speaker from first line. FIRSTLINESPEAKERS = False # INLINE401SPEAKERS: Extract speaker from "Name「dialogue」" inline format on 401 lines. -INLINE401SPEAKERS = True +INLINE401SPEAKERS = False # FACENAME101: Map face name -> speaker. FACENAME101 = False # Face name -> speaker mapping for FACENAME101. @@ -1013,6 +1013,7 @@ def parseNames(data, filename, context): (r"\n(.+?)\n<", False), (r"text:(.+)>", False), (r"\d][^,>]*)", False), + (r"<コメント:\n?(.*?)>", True), ] for entry in entries: @@ -1352,6 +1353,7 @@ def searchNames(data, pbar, context, filename): (r"\n(.+?)\n<", False), (r"text:(.+)>", False), (r"\d][^,>]*)", False), + (r"<コメント:\n?(.*?)>", True), ] # For each entry, collect all note matches for idx, entry in enumerate(data):