From 6f964716c7baefacd757415f058a597bb749a451 Mon Sep 17 00:00:00 2001 From: Jake <73198594+jaborsh@users.noreply.github.com> Date: Wed, 22 Nov 2023 00:37:16 -0700 Subject: [PATCH] Fixing if/else tree in XYZGrid launchcmd If needed to be elif. --- evennia/contrib/grid/xyzgrid/launchcmd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evennia/contrib/grid/xyzgrid/launchcmd.py b/evennia/contrib/grid/xyzgrid/launchcmd.py index b243c9e635..a09525b91f 100644 --- a/evennia/contrib/grid/xyzgrid/launchcmd.py +++ b/evennia/contrib/grid/xyzgrid/launchcmd.py @@ -436,7 +436,7 @@ def xyzcommand(*args): if option in ("help", "h"): _option_help(*suboptions) - if option in ("list", "show"): + elif option in ("list", "show"): _option_list(*suboptions) elif option == "init": _option_init(*suboptions)