From 44c236b235c74c12b64f66bf520543cff58fb962 Mon Sep 17 00:00:00 2001 From: Adam Johnson Date: Sun, 15 Jun 2025 15:24:51 -0500 Subject: [PATCH] Fix traceback spam when an out of range game is selected. --- korman/ui/ui_world.py | 1 + 1 file changed, 1 insertion(+) diff --git a/korman/ui/ui_world.py b/korman/ui/ui_world.py index 9dfb940..981538a 100644 --- a/korman/ui/ui_world.py +++ b/korman/ui/ui_world.py @@ -51,6 +51,7 @@ class PlasmaGameHelper: def legal_game(self): if self.active_game is not None: return bool(bpy.context.world.plasma_age.age_name.strip()) + return False class PlasmaGameExportMenu(PlasmaGameHelper, bpy.types.Menu):