From: Mircea Kitsune Date: Tue, 25 Oct 2011 11:49:38 +0000 (+0300) Subject: Document copying / pasting in the help system X-Git-Tag: xonotic-v0.6.0~35^2~18^2~180 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=73877c69be2a86e6234adacca67a9d3d6c25d2a8;p=xonotic%2Fxonotic-data.pk3dir.git Document copying / pasting in the help system --- diff --git a/qcsrc/server/mutators/sandbox.qc b/qcsrc/server/mutators/sandbox.qc index 0cf5702e3..4d2b96115 100644 --- a/qcsrc/server/mutators/sandbox.qc +++ b/qcsrc/server/mutators/sandbox.qc @@ -53,6 +53,8 @@ MUTATOR_HOOKFUNCTION(sandbox_PlayerCommand) print_to(self, "^7\"^2spawn_item ^3item^7\" spawns the specified item in front of the player. Only weapons are currently supported"); print_to(self, "^7\"^2spawn_object ^3models/foo/bar.md3^7\" spawns a new object in front of the player, and gives it the specified model"); print_to(self, "^7\"^2remove_object^7\" removes the object the player is looking at. Players can only remove their own objects"); + print_to(self, "^7\"^2duplicate_object_copy^7\" copies the object the player is looking at. Players can only copy their own objects"); + print_to(self, "^7\"^2duplicate_object_paste^7\" pastes the copied object in front of the player"); print_to(self, "^7The ^1drag object ^7key can be used to grab and carry objects. Players can only grab their own objects"); return TRUE; }