diff --git a/game/scripts/utility/editor.rpy b/game/scripts/utility/editor.rpy index e2f08069..b49b4333 100644 --- a/game/scripts/utility/editor.rpy +++ b/game/scripts/utility/editor.rpy @@ -16,10 +16,9 @@ init python: self.active = False def catch(self, *args, **kwargs): - if not self.active: + if not self.active or renpy.is_init_phase(): return - global n # DEBUG self.node = None self.live_code = None @@ -39,7 +38,6 @@ init python: return self.node = node - n = node # DEBUG who = node.who file = node.filename