[antum] Display error message in 'loadScript' function:
- Replaces message in 'fileExists' function
This commit is contained in:
parent
9b26b129c0
commit
dc247f0253
@ -48,7 +48,6 @@ function antum.fileExists(file_path)
|
||||
local fexists = io.open(file_path, 'r')
|
||||
|
||||
if fexists == nil then
|
||||
antum.logError('Could not load script: ' .. file_path)
|
||||
return false
|
||||
end
|
||||
|
||||
@ -68,6 +67,8 @@ function antum.loadScript(mod_path, script_name)
|
||||
|
||||
if antum.fileExists(script) then
|
||||
dofile(script)
|
||||
else
|
||||
antum.logError('Could not load, script does not exists: ' .. script)
|
||||
end
|
||||
end
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user