This commit is contained in:
Nayruden 2015-11-18 21:35:51 -06:00
parent 0dbc672ba1
commit 34952639c5
4 changed files with 14 additions and 3 deletions

View File

@ -6,7 +6,7 @@
if [ -a .commit ]
then
rm .commit
echo `date '+%s'` > version
git add version
echo `date '+%s'` > ulib.build
git add ulib.build
git commit --amend -C HEAD --no-verify
fi

12
addon.json Normal file
View File

@ -0,0 +1,12 @@
{
"title" : "ULib",
"type" : "ServerContent",
"tags" : [ "fun", "build" ],
"ignore" :
[
"addon.txt",
".editorconfig",
".git*"
],
"workshopid": 557962238
}

View File

@ -264,7 +264,6 @@ ULib.UCL_USERS = "data/ulib/users.txt"
ULib.UCL_GROUPS = "data/ulib/groups.txt"
ULib.UCL_REGISTERED = "data/ulib/misc_registered.txt" -- Holds access strings that ULib has already registered
ULib.BANS_FILE = "data/ulib/bans.txt"
ULib.VERSION_FILE = "data/ulib/version.txt"
ULib.DEFAULT_GRANT_ACCESS = { allow={}, deny={}, guest=true }

View File