Rename chatcommand to /vanish

This commit is contained in:
octacian 2017-06-08 06:58:45 -07:00
parent 5b23d8dd6a
commit f952a301dc
2 changed files with 5 additions and 5 deletions

View File

@ -7,7 +7,7 @@ Invisibility Command [invis]
This extremely simple mod introduces a single command that allows you to make yourself or another player invisible (both the player itself and the nametag). This extremely simple mod introduces a single command that allows you to make yourself or another player invisible (both the player itself and the nametag).
__Usage:__ __Usage:__
- `/invisible`: Toggle invisibility for yourself - `/vanish`: Toggle invisibility for yourself
- `/invisible <name>`: Toggle invisibility for another player - `/vanish <name>`: Toggle invisibility for another player
__Note:__ The `/invisible` command requires the `invisible` privilege. __Note:__ The `/vanish` command requires the `vanish` privilege.

View File

@ -51,10 +51,10 @@ function invis.toggle(player, toggle)
end end
-- [register] Privilege -- [register] Privilege
minetest.register_privilege("invisibility", "Allow use of /invisible command") minetest.register_privilege("vanish", "Allow use of /vanish command")
-- [register] Command -- [register] Command
minetest.register_chatcommand("invisible", { minetest.register_chatcommand("vanish", {
description = "Make yourself or another player invisible", description = "Make yourself or another player invisible",
params = "<name>", params = "<name>",
privs = {invisibility=true}, privs = {invisibility=true},