From b93a287b36e5688e8bc28318598b0ba67dfdd057 Mon Sep 17 00:00:00 2001 From: aerinon Date: Thu, 10 Oct 2024 15:16:24 -0600 Subject: [PATCH] feat: spoiler/playthrough support in meta section of customizer --- source/classes/CustomSettings.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/classes/CustomSettings.py b/source/classes/CustomSettings.py index 51fa4c2e..37bb0206 100644 --- a/source/classes/CustomSettings.py +++ b/source/classes/CustomSettings.py @@ -61,6 +61,8 @@ class CustomSettings(object): args.outputname = get_setting(meta['name'], args.outputname) args.bps = get_setting(meta['bps'], args.bps) args.suppress_rom = get_setting(meta['suppress_rom'], args.suppress_rom) + args.skip_playthrough = get_setting(meta['skip_playthrough'], args.skip_playthrough) + args.spoiler = get_setting(meta['spoiler'], args.spoiler) args.names = get_setting(meta['names'], args.names) args.race = get_setting(meta['race'], args.race) args.notes = get_setting(meta['user_notes'], args.notes)