Remove param requirements on some dev cmds

This commit is contained in:
Vortrex
2022-01-31 12:29:25 -06:00
parent 87c0a8f90f
commit 10fe5895ff

View File

@@ -545,11 +545,6 @@ function streamAudioNameToAllPlayersCommand(command, params, client) {
// ===========================================================================
function fixAllServerBlipsCommand(command, params, client) {
if(areParamsEmpty(params)) {
messagePlayerSyntax(client, getCommandSyntaxText(command));
return false;
}
let blips = getElementsByType(ELEMENT_BLIP);
blips.forEach((blip) => {
deleteGameElement(blip);
@@ -563,11 +558,6 @@ function fixAllServerBlipsCommand(command, params, client) {
// ===========================================================================
function fixAllServerPickupsCommand(command, params, client) {
if(areParamsEmpty(params)) {
messagePlayerSyntax(client, getCommandSyntaxText(command));
return false;
}
let pickups = getElementsByType(ELEMENT_PICKUP);
pickups.forEach((pickup) => {
deleteGameElement(pickup);
@@ -581,11 +571,6 @@ function fixAllServerPickupsCommand(command, params, client) {
// ===========================================================================
function resetAllServerAmbienceElementsCommand(command, params, client) {
if(areParamsEmpty(params)) {
messagePlayerSyntax(client, getCommandSyntaxText(command));
return false;
}
clearTemporaryPeds();
cleartTemporaryVehicles();
}
@@ -598,11 +583,3 @@ function reloadEconomyConfigurationCommand(command, params, client) {
}
// ===========================================================================
function reloadLocaleConfigurationCommand(command, params, client) {
getGlobalConfig().locales = loadLocaleConfig();
getServerData().localeStrings = loadAllLocaleStrings();
messageAdmins(`${client.name} {MAINCOLOUR}has reloaded the locale settings and texts`);
}
// ===========================================================================