From 78bdffa076d4802a3bf7749291d9f610bcf99a23 Mon Sep 17 00:00:00 2001 From: sorressean Date: Fri, 5 Jan 2018 02:38:35 -0500 Subject: [PATCH] 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)