From: Mircea Kitsune Date: Tue, 25 Oct 2011 09:12:29 +0000 (+0300) Subject: Use the correct name for the grab key in the sandbox help system X-Git-Tag: xonotic-v0.6.0~35^2~18^2~190 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=e51ddd0aee96931dc925937b0e9a4f7858be53fd;p=xonotic%2Fxonotic-data.pk3dir.git Use the correct name for the grab key in the sandbox help system --- diff --git a/qcsrc/server/mutators/sandbox.qc b/qcsrc/server/mutators/sandbox.qc index 7bb4ad1b2..4b6d9cb4a 100644 --- a/qcsrc/server/mutators/sandbox.qc +++ b/qcsrc/server/mutators/sandbox.qc @@ -16,7 +16,7 @@ MUTATOR_HOOKFUNCTION(sandbox_PlayerCommand) 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\"^2spawn_item ^3item^7\" spawns the specified item in front of the player. Only weapons are currently supported"); 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, "^1button8 ^7can be used to grab and carry objects. Players can only grab their own objects"); + print_to(self, "^7The ^1drag object ^key can be used to grab and carry objects. Players can only grab their own objects"); return TRUE; } else if(argv(1) == "spawn_object")