chore: remove references to onikakushi

This commit is contained in:
Dusk 2026-01-31 23:38:58 +01:00
parent b8db8f2c40
commit e88e62052d
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ class CsvEntry():
self.end = end self.end = end
# Name of section in Nscripter, name of Unity script file, dialogue line start, dialogue line end (OutputLine()) # Name of section in Nscripter, name of Unity script file, dialogue line start, dialogue line end (OutputLine())
onik = [ script_flow = [
CsvEntry('Onikakusi.csv', '1/onik_000.txt', 0, 48), CsvEntry('Onikakusi.csv', '1/onik_000.txt', 0, 48),
CsvEntry('day1.csv', '1/onik_001.txt', 0, 663), CsvEntry('day1.csv', '1/onik_001.txt', 0, 663),
CsvEntry('day2.csv', '1/onik_002.txt', 0, 520), CsvEntry('day2.csv', '1/onik_002.txt', 0, 520),

View File

@ -93,7 +93,7 @@ def get_functions_from_file(filepath: str) -> list[str]:
return tokens return tokens
def parse_to_csv(): def parse_to_csv():
for csv_entry in flow.onik: for csv_entry in flow.script_flow:
out_path = config.get('output_path') out_path = config.get('output_path')
scripts_path = config.get('scripts_path') scripts_path = config.get('scripts_path')