From ea50d8b0247bf81782e74b3031bb3217c7f39470 Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Thu, 5 Jun 2025 13:31:11 -0400 Subject: [PATCH] Fix error in script manager. --- src/cthulhu/script_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cthulhu/script_manager.py b/src/cthulhu/script_manager.py index e5daeb9..a8508d2 100644 --- a/src/cthulhu/script_manager.py +++ b/src/cthulhu/script_manager.py @@ -323,7 +323,7 @@ class ScriptManager: from . import cthulhu plugin_manager = cthulhu.cthulhuApp.getPluginSystemManager() if plugin_manager: - # plugin_manager.register_plugin_keybindings_with_active_script() + pass # plugin_manager.register_plugin_keybindings_with_active_script() tokens = ["SCRIPT MANAGER: Setting active script to", newScript, "reason:", reason] debug.printTokens(debug.LEVEL_INFO, tokens, True)