diff --git a/evennia/commands/default/building.py b/evennia/commands/default/building.py index a69d1cce15..ace7b7a7b7 100644 --- a/evennia/commands/default/building.py +++ b/evennia/commands/default/building.py @@ -251,20 +251,14 @@ class CmdCopy(ObjManipCommand): copy an object and its properties Usage: - copy[/reset] [= ][;alias;alias..] + copy [= ][;alias;alias..] [:] [, ...] - switch: - reset - make a 'clean' copy off the object, thus - removing any changes that might have been made to the original - since it was first created. - Create one or more copies of an object. If you don't supply any targets, one exact copy of the original object will be created with the name *_copy. """ key = "copy" - switch_options = ("reset",) locks = "cmd:perm(copy) or perm(Builder)" help_category = "Building"