From 4b20bb98d98aa5e3aa173897bbbb6d507db0e9aa Mon Sep 17 00:00:00 2001 From: Steven Garcia Date: Sun, 29 Dec 2024 08:33:14 -0600 Subject: [PATCH] Fix scenario import error --- io_scene_halo/file_tag/import_tag.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/io_scene_halo/file_tag/import_tag.py b/io_scene_halo/file_tag/import_tag.py index 6b9d0b929..0543557f0 100644 --- a/io_scene_halo/file_tag/import_tag.py +++ b/io_scene_halo/file_tag/import_tag.py @@ -183,7 +183,7 @@ def load_file(context, file_path, game_title, fix_rotations, empty_markers, repo elif tag_group == "scnr": context.scene.halo.game_title = game_title - context.scene.halo_tag.scenario_path = file_path + context.scene.tag_scenario.scenario_path = file_path build_scene = build_scenario if game_title == "halo1": ASSET = process_h1_scenario(input_stream, report)