From 55a29f00a12c50311dd7b277795ec7cfa606f443 Mon Sep 17 00:00:00 2001 From: sorressean Date: Fri, 5 Jan 2018 02:33:29 -0500 Subject: [PATCH 1/2] Fixed typo in help message that shows syntax. --- evennia/commands/default/building.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evennia/commands/default/building.py b/evennia/commands/default/building.py index f4a001e6d2..9f3e2303a9 100644 --- a/evennia/commands/default/building.py +++ b/evennia/commands/default/building.py @@ -2686,7 +2686,7 @@ class CmdSpawn(COMMAND_DEFAULT_CLASS): def _show_prototypes(prototypes): """Helper to show a list of available prototypes""" prots = ", ".join(sorted(prototypes.keys())) - return "\nAvailable prototypes (case sensistive): %s" % ( + return "\nAvailable prototypes (case sensative): %s" % ( "\n" + utils.fill(prots) if prots else "None") prototypes = spawn(return_prototypes=True) From 78bdffa076d4802a3bf7749291d9f610bcf99a23 Mon Sep 17 00:00:00 2001 From: sorressean Date: Fri, 5 Jan 2018 02:38:35 -0500 Subject: [PATCH 2/2] spelled correctly this time. --- evennia/commands/default/building.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evennia/commands/default/building.py b/evennia/commands/default/building.py index 9f3e2303a9..78aa7d7553 100644 --- a/evennia/commands/default/building.py +++ b/evennia/commands/default/building.py @@ -2686,7 +2686,7 @@ class CmdSpawn(COMMAND_DEFAULT_CLASS): def _show_prototypes(prototypes): """Helper to show a list of available prototypes""" prots = ", ".join(sorted(prototypes.keys())) - return "\nAvailable prototypes (case sensative): %s" % ( + return "\nAvailable prototypes (case sensitive): %s" % ( "\n" + utils.fill(prots) if prots else "None") prototypes = spawn(return_prototypes=True)