Changed ULib data folder references to all be lower case, fixed some convar help strings.

This commit is contained in:
Nayruden 2012-10-27 15:26:04 -04:00
parent f46c330bab
commit 8dbafa1f96
2 changed files with 6 additions and 6 deletions

View File

@ -11,7 +11,7 @@ if not ULib then
if not ULib.consoleCommand then ULib.consoleCommand = game.ConsoleCommand end -- In case they remove our module or it doesn't load
file.CreateDir( "ULib" )
file.CreateDir( "ulib" )
Msg( "///////////////////////////////\n" )
Msg( "// Ulysses Library //\n" )

View File

@ -220,11 +220,11 @@ ULib.HOOK_PLAYER_NAME_CHANGED = "ULibPlayerNameChanged"
]]
if SERVER then
ULib.UCL_LOAD_DEFAULT = true -- Set this to false to ignore the SetUserGroup() call.
ULib.UCL_USERS = "ULib/users.txt"
ULib.UCL_GROUPS = "ULib/groups.txt"
ULib.UCL_REGISTERED = "ULib/misc_registered.txt" -- Holds access strings that ULib has already registered
ULib.BANS_FILE = "ULib/bans.txt"
ULib.VERSION_FILE = "ULib/version.txt"
ULib.UCL_USERS = "ulib/users.txt"
ULib.UCL_GROUPS = "ulib/groups.txt"
ULib.UCL_REGISTERED = "ulib/misc_registered.txt" -- Holds access strings that ULib has already registered
ULib.BANS_FILE = "ulib/bans.txt"
ULib.VERSION_FILE = "ulib/version.txt"
ULib.DEFAULT_GRANT_ACCESS = { allow={}, deny={}, guest=true }