gitflow-hotfix-stash: 5.3.2

This commit is contained in:
Cooldude2606
2019-04-15 21:02:59 +01:00
parent adb248d948
commit 40fc85bb7c
2 changed files with 3 additions and 2 deletions

View File

@@ -23,6 +23,7 @@ return {
'modules.addons.spawn-area',
'modules.addons.compilatron',
'modules.addons.scorched-earth',
'modules.addons.pollution-grading',
-- Config Files
'config.command_auth_admin', -- commands tagged with admin_only are blocked for non admins
'config.command_auth_roles', -- commands must be allowed via the role config

View File

@@ -120,7 +120,7 @@ Roles.new_role('Veteran','Vet')
:allow{
}
:set_auto_promote_condition(function(player)
if player.online_time > 10*hours then
if player.online_time > 10*216000 then
return true
end
end)
@@ -141,7 +141,7 @@ Roles.new_role('Regular','Reg')
'command/kill'
}
:set_auto_promote_condition(function(player)
if player.online_time > 3*hours then
if player.online_time > 3*216000 then
return true
end
end)