Mass commit

This commit is contained in:
Vortrex
2021-01-01 16:18:59 -06:00
parent a9dad59b27
commit 5af3023c85
45 changed files with 1648 additions and 1599 deletions

View File

@@ -68,7 +68,7 @@ function whisperCommand(command, params, client) {
if(areParamsEmpty(params)) {
messagePlayerSyntax(client, getCommandSyntaxText(command));
return false;
}
}
whisperToNearbyPlayers(client, params);
return true;
@@ -76,7 +76,7 @@ function whisperCommand(command, params, client) {
// ---------------------------------------------------------------------------
function adminChatCommand(command, params, client) {
function adminChatCommand(command, params, client) {
if(areParamsEmpty(params)) {
messagePlayerSyntax(client, getCommandSyntaxText(command));
return false;
@@ -87,7 +87,7 @@ function adminChatCommand(command, params, client) {
// ---------------------------------------------------------------------------
function clanChatCommand(command, params, client) {
function clanChatCommand(command, params, client) {
if(areParamsEmpty(params)) {
messagePlayerSyntax(client, getCommandSyntaxText(command));
return false;
@@ -115,7 +115,7 @@ function whisperToNearbyPlayers(client, messageText) {
//if(clients[i] != client) {
messagePlayerWhisper(getClientFromPlayerElement(clients[i]), client, messageText);
//}
}
}
}
// ---------------------------------------------------------------------------