From 40fc85bb7cc7efd2d5bccc94b2a3e2e59c29f90a Mon Sep 17 00:00:00 2001 From: Cooldude2606 Date: Mon, 15 Apr 2019 21:02:59 +0100 Subject: [PATCH] gitflow-hotfix-stash: 5.3.2 --- config/file_loader.lua | 1 + config/roles.lua | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/config/file_loader.lua b/config/file_loader.lua index 3cbd4fac..7eea99d0 100644 --- a/config/file_loader.lua +++ b/config/file_loader.lua @@ -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 diff --git a/config/roles.lua b/config/roles.lua index 29c0017b..2b2fc6ac 100644 --- a/config/roles.lua +++ b/config/roles.lua @@ -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)