From c9a02f3d6c418fb48c37a7572454fffad26a2c4e Mon Sep 17 00:00:00 2001 From: BlauFeuer Date: Tue, 5 Jul 2016 14:48:50 -0400 Subject: [PATCH] Fix typo --- 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 10c02dbd6c..f7da1bef38 100644 --- a/evennia/commands/default/building.py +++ b/evennia/commands/default/building.py @@ -2281,7 +2281,7 @@ class CmdTeleport(COMMAND_DEFAULT_CLASS): caller.msg("You can't teleport an object inside of itself!") return if obj_to_teleport == destination.location: - caller.msg("You can'nt teleport an object inside something it holds!") + caller.msg("You can't teleport an object inside something it holds!") return if obj_to_teleport.location and obj_to_teleport.location == destination: caller.msg("%s is already at %s." % (obj_to_teleport, destination))