From 35b5e6a7ea6c28255603f85dc1eed5f9830afaf3 Mon Sep 17 00:00:00 2001 From: Stardust Sauce Date: Thu, 14 Apr 2022 00:54:16 -0400 Subject: [PATCH] Re-updated the old asset extractor to support new colors --- OTRExporter/extract_assets_old.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/OTRExporter/extract_assets_old.py b/OTRExporter/extract_assets_old.py index 2922bbf06..0486ce9af 100644 --- a/OTRExporter/extract_assets_old.py +++ b/OTRExporter/extract_assets_old.py @@ -15,6 +15,7 @@ def BuildOTR(): shutil.copyfile("baserom/Audiotable", "Extract/Audiotable") shutil.copytree("assets", "Extract/assets") + shutil.copytree("colors", "Extract/colors") execStr = "x64\\Release\\ZAPD.exe" if sys.platform == "win32" else "../ZAPD/ZAPD.out" @@ -122,4 +123,4 @@ def main(): shutil.rmtree("Extract") if __name__ == "__main__": - main() \ No newline at end of file + main()