Skip to content
This repository has been archived by the owner on May 23, 2023. It is now read-only.

Commit

Permalink
-took
Browse files Browse the repository at this point in the history
  • Loading branch information
unknown-gd committed Dec 23, 2022
1 parent 9298910 commit b9d0b89
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lua/autorun/!!!sh_plib.lua
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ do
if isfunction( func ) then
local ok, result = pcall( func )
if (ok) then
Info( string_format( 'Web module \'{0}\' successfully installed. (Took %.4f seconds)', SysTime() - stopwatch ), moduleName )
Info( string_format( 'Web module \'{0}\' successfully installed. (%.4f seconds)', SysTime() - stopwatch ), moduleName )
if isfunction( callback ) then
callback( ok, result )
end
Expand Down Expand Up @@ -331,7 +331,7 @@ do
-- Including
local ok, result = Include( filePath )
if (ok) then
Info( string_format( 'Module \'' .. moduleName .. '\' successfully installed. (Took %.4f seconds)', SysTime() - stopwatch ) )
Info( string_format( 'Module \'' .. moduleName .. '\' successfully installed. (%.4f seconds)', SysTime() - stopwatch ) )
if (result == nil) then
modules[ moduleName ] = true
else
Expand Down Expand Up @@ -368,7 +368,7 @@ do
-- Include
local ok, err = Include( filePath )
if (ok) then
Info( string_format( 'Addon \'' .. name .. '\' successfully included. (Took %.4f seconds)', SysTime() - stopwatch ) )
Info( string_format( 'Addon \'' .. name .. '\' successfully included. (%.4f seconds)', SysTime() - stopwatch ) )
else
Error( 'Addon \'' .. name .. '\' include failed: ' .. err )
end
Expand Down Expand Up @@ -441,4 +441,4 @@ do

end

Info( string_format( '{0} v{1} is successfully initialized. (Took %.4f seconds)', SysTime() - globalStopwatch ), addonName, string.Version( Version ) )
Info( string_format( '{0} v{1} is successfully initialized. (%.4f seconds)', SysTime() - globalStopwatch ), addonName, string.Version( Version ) )

0 comments on commit b9d0b89

Please sign in to comment.