Remove unused /reset switch from CmdCopy. Resolves #2136

This commit is contained in:
Griatch 2020-05-18 18:18:46 +02:00
parent 6393d69cb2
commit 2ec3bdce12

View file

@ -251,20 +251,14 @@ class CmdCopy(ObjManipCommand):
copy an object and its properties
Usage:
copy[/reset] <original obj> [= <new_name>][;alias;alias..]
copy <original obj> [= <new_name>][;alias;alias..]
[:<new_location>] [,<new_name2> ...]
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"