forked from TeamUlysses/ulib
Release prep
This commit is contained in:
parent
5d9eaad2ec
commit
b0da4e8e4f
@ -1,6 +1,6 @@
|
||||
Title: ULib Readme
|
||||
|
||||
*ULib v2.60 (released 00/00/00)*
|
||||
*ULib v2.52 (released 03/09/15)*
|
||||
|
||||
ULib is a developer library for GMod 10 (<http://garrysmod.com/>).
|
||||
|
||||
@ -44,7 +44,7 @@ After installing ULib correctly, scripts that take advantage of ULib will take c
|
||||
Rest easy!
|
||||
|
||||
Group: Changelog
|
||||
v2.60 - *(00/00/00)*
|
||||
v2.52 - *(03/09/15)*
|
||||
* [ADD] Admin parameter to ULib.unban for overriding purposes (Thanks for the idea, MStruntze).
|
||||
* [ADD] A list of players is presented when a target string for getUser matches more than one player (Thanks, RhapsodySL).
|
||||
* [FIX] ULib.ucl.registerAccess not allowing an access tag to be registered to no groups.
|
||||
|
@ -1,8 +1,8 @@
|
||||
"AddonInfo"
|
||||
{
|
||||
"name" "ULib"
|
||||
"version" "2.60"
|
||||
"up_date" "00/00/00"
|
||||
"version" "2.52"
|
||||
"up_date" "03/09/15"
|
||||
"author_name" "Team Ulysses"
|
||||
"author_email" "teamulysses@ulyssesmod.net"
|
||||
"author_url" "http://www.ulyssesmod.net/"
|
||||
|
@ -141,7 +141,7 @@ end
|
||||
Revisions:
|
||||
|
||||
2.50 - Created to match GM13 API
|
||||
2.60 - Modified to match latest Garry-changes
|
||||
2.52 - Modified to match latest Garry-changes
|
||||
]]
|
||||
function Run( name, ... )
|
||||
return Call( name, gmod and gmod.GetGamemode() or nil, ... )
|
||||
@ -164,11 +164,6 @@ function Call( name, gm, ... )
|
||||
sortHooks( resort[ i ] )
|
||||
end
|
||||
resort = {}
|
||||
|
||||
-- If called from hook.Run then gm will be nil.
|
||||
if gm == nil and gmod ~= nil then
|
||||
gm = gmod.GetGamemode()
|
||||
end
|
||||
|
||||
local HookTable = Hooks[ name ]
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user