From a1830caeec384a92e9543d2ad7132940d8c5cbba Mon Sep 17 00:00:00 2001 From: Tim Chaplin Date: Sun, 27 Dec 2020 13:52:52 -0500 Subject: [PATCH] Increase SaveYesNoCmdSet priority to 150 Fixes a bug where typing "n" in a room with a "north" exit goes north instead of closing the editor when prompted. --- evennia/utils/eveditor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evennia/utils/eveditor.py b/evennia/utils/eveditor.py index 8f0323fdd4..e4c69d3939 100644 --- a/evennia/utils/eveditor.py +++ b/evennia/utils/eveditor.py @@ -202,7 +202,7 @@ class SaveYesNoCmdSet(CmdSet): """Stores the yesno question""" key = "quitsave_yesno" - priority = 1 + priority = 150 # override other cmdsets. mergetype = "Replace" def at_cmdset_creation(self):