diff --git a/evennia/commands/default/building.py b/evennia/commands/default/building.py index 26b7e0249..7b9f987d6 100644 --- a/evennia/commands/default/building.py +++ b/evennia/commands/default/building.py @@ -206,8 +206,8 @@ class CmdCopy(ObjManipCommand): caller = self.caller args = self.args if not args: - caller.msg("Usage: @copy [=[;alias;alias..]][" - ":] [, ...]") + caller.msg("Usage: @copy [=[;alias;alias..]]" + "[:] [, ...]") return if not self.rhs: @@ -483,7 +483,7 @@ class CmdCreate(ObjManipCommand): caller = self.caller if not self.args: - string = "Usage: @create[/drop] [;alias;alias...] [:typeclass_path]" + string = "Usage: @create[/drop] [;alias;alias...] [:typeclass.path]" caller.msg(string) return @@ -720,8 +720,8 @@ class CmdDig(ObjManipCommand): caller = self.caller if not self.lhs: - string = "Usage: @dig[/teleport] [;alias;alias...][" \ - ":parent] [= " + string = "Usage: @dig[/teleport] [;alias;alias...]" \ + "[:parent] [= " string += "[;alias;alias..][:parent]] " string += "[, [;alias;alias..][:parent]]" caller.msg(string) @@ -871,8 +871,8 @@ class CmdTunnel(COMMAND_DEFAULT_CLASS): "Implements the tunnel command" if not self.args or not self.lhs: - string = "Usage: @tunnel[/switch] [= [" \ - ";alias;alias;...][:typeclass]]" + string = "Usage: @tunnel[/switch] [= " \ + "[;alias;alias;...][:typeclass]]" self.caller.msg(string) return if self.lhs not in self.directions: @@ -1562,7 +1562,7 @@ class CmdTypeclass(COMMAND_DEFAULT_CLASS): set or change an object's typeclass Usage: - @typeclass[/switch] [= typeclass_path] + @typeclass[/switch] [= typeclass.path] @type '' @parent '' @swap - this is a shorthand for using /force/reset flags.