From a6ff9ed876269a172369f9a0bbe9e0b7076e497d Mon Sep 17 00:00:00 2001 From: LoafyLemon Date: Sun, 2 Oct 2022 00:35:43 +0100 Subject: [PATCH] Bugfix * Attempts to fix Expression Editor crash caused by pickling the unpickleable --- game/scripts/utility/editor.rpy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game/scripts/utility/editor.rpy b/game/scripts/utility/editor.rpy index 7951a311..e2f08069 100644 --- a/game/scripts/utility/editor.rpy +++ b/game/scripts/utility/editor.rpy @@ -3,7 +3,7 @@ init python: from renpy.parser import ParseError from copy import deepcopy - class Editor(NoRollback): + class Editor(python_object): def __init__(self): self.node = None