From 703b307c4021ef9c82cd7d258abc290a65c7cb0c Mon Sep 17 00:00:00 2001 From: Griatch Date: Mon, 18 May 2020 18:18:46 +0200 Subject: [PATCH] Remove unused /reset switch from CmdCopy. Resolves #2136 --- evennia/commands/default/building.py | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) 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"