Update Utils.lua

Avoid file loading stop scripts
This commit is contained in:
Thomas
2023-11-20 14:49:16 +01:00
committed by GitHub
parent b346dabdf8
commit ba1dcfcdba

View File

@@ -2391,7 +2391,7 @@ function UTILS.LoadFromFile(Path,Filename)
-- Check if file exists.
local exists=UTILS.CheckFileExists(Path,Filename)
if not exists then
BASE:E(string.format("ERROR: File %s does not exist!",filename))
BASE:I(string.format("ERROR: File %s does not exist!",filename))
return false
end