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.
This commit is contained in:
Tim Chaplin 2020-12-27 13:52:52 -05:00
parent 574d7fbd4f
commit cca2bd8997

View file

@ -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):