From 4e49f53fdc5184140a8ffeaa0a2f0286ea0b3ff6 Mon Sep 17 00:00:00 2001 From: Unknown Date: Fri, 5 Jan 2018 14:01:14 +0000 Subject: [PATCH] Aded Protected Require --- control.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/control.lua b/control.lua index bfa67c15..eb91bbd4 100644 --- a/control.lua +++ b/control.lua @@ -47,4 +47,5 @@ Ranking._auto_edit_ranks() local success,err = pcall(require,'Addons/load') if not success then error(err) end -- this loads anything that does not use ExpCore (sourse given in the file) -pcall(require,'StandAlone/load') \ No newline at end of file +local success,err = pcall(require,'StandAlone/load') +if not success then error(err) end \ No newline at end of file