Fixed help texts in mute commands

This commit is contained in:
Timo Smit 2018-02-15 11:07:08 +01:00
parent 48522b8dcf
commit 6282c0e9bf
4 changed files with 4 additions and 4 deletions

View File

@ -89,4 +89,4 @@ function commandMute(clientId, command, victim, ...)
return true
end
commands.addadmin("mute", commandMute, auth.PERM_MUTE, "voicemutes a player", "^9[^3name|slot#^9]", nil, (settings.get("g_standalone") == 0))
commands.addadmin("mute", commandMute, auth.PERM_MUTE, "mutes a player (text and voice chat)", "^9[^3name|slot#^9]", nil, (settings.get("g_standalone") == 0))

View File

@ -60,4 +60,4 @@ function commandUnmute(clientId, command, victim)
return true
end
commands.addadmin("unmute", commandUnmute, auth.PERM_MUTE, "unvoicemutes a player", "^9[^3name|slot#^9]", nil, (settings.get("g_standalone") == 0))
commands.addadmin("unmute", commandUnmute, auth.PERM_MUTE, "unmutes a player (text and voice chat)", "^9[^3name|slot#^9]", nil, (settings.get("g_standalone") == 0))

View File

@ -88,4 +88,4 @@ function commandVoiceMute(clientId, command, victim, ...)
return true
end
commands.addadmin("vmute", commandVoiceMute, auth.PERM_VOICEMUTE, "voicemutes a player", "^9[^3name|slot#^9]")
commands.addadmin("vmute", commandVoiceMute, auth.PERM_VOICEMUTE, "mutes a player (voice chat only)", "^9[^3name|slot#^9]")

View File

@ -56,4 +56,4 @@ function commandVoiceUnmute(clientId, command, victim)
return true
end
commands.addadmin("vunmute", commandVoiceUnmute, auth.PERM_VOICEMUTE, "unvoicemutes a player", "^9[^3name|slot#^9]")
commands.addadmin("vunmute", commandVoiceUnmute, auth.PERM_VOICEMUTE, "unmutes a player (voice chat only)", "^9[^3name|slot#^9]")