Fixed Command Help

This commit is contained in:
Cooldude2606
2018-01-05 13:23:27 +00:00
parent 2571410bbe
commit 687dc43df1
2 changed files with 3 additions and 2 deletions

View File

@@ -41,7 +41,6 @@ local groups = Ranking._groups(true)
groups['Root']:edit('allow',false,{
['testing']=true
})
ranks['Root']:edit('test',true,'testing')
groups['Root']:add_rank{
name='Owner',
@@ -103,6 +102,8 @@ groups['User']:add_rank{
local ranks = Ranking._ranks(true)
ranks['Root']:edit('test',true,'testing')
Ranking._base_preset{
['badgamernl']='Owner',
['arty714']='Community Manager',

View File

@@ -137,5 +137,5 @@ commands.add_command = function(name, description, inputs, event)
inputs=inputs
}
command_calls[name] = event
commands._add_command(name,command_inputs(command_data[name])..description,run_custom_command)
commands._add_command(name,command_inputs(command_data[name])..'- '..description,run_custom_command)
end