diff options
| author | Alexander Pickering <alexandermpickering@gmail.com> | 2016-05-22 14:18:52 -0400 |
|---|---|---|
| committer | Alexander Pickering <alexandermpickering@gmail.com> | 2016-05-22 14:18:52 -0400 |
| commit | e014b7940d59c791c4a6e96ec27aa3232d3a39a1 (patch) | |
| tree | 515ff14cf73b236d2159ea2703502abce0f3781f /gamemode/configure_me.lua | |
| parent | eea3fcb40b4a52e5985859bf6bb77d3384d4d0f7 (diff) | |
| download | gmstranded-e014b7940d59c791c4a6e96ec27aa3232d3a39a1.tar.gz gmstranded-e014b7940d59c791c4a6e96ec27aa3232d3a39a1.tar.bz2 gmstranded-e014b7940d59c791c4a6e96ec27aa3232d3a39a1.zip | |
Cleaned up the comments in the itemsystem
Diffstat (limited to 'gamemode/configure_me.lua')
| -rw-r--r-- | gamemode/configure_me.lua | 23 |
1 files changed, 9 insertions, 14 deletions
diff --git a/gamemode/configure_me.lua b/gamemode/configure_me.lua index 4c007f7..f7651af 100644 --- a/gamemode/configure_me.lua +++ b/gamemode/configure_me.lua @@ -27,20 +27,14 @@ GMS.NETINT_BITCOUNT = 16 // time in seconds GMS.graveTime = { - - { - - rank = "user", - time = "300", - - }, - { - - rank = "superadmin", - time = "420", - - }, - + { + rank = "user", + time = "300", + }, + { + rank = "superadmin", + time = "420", + }, } //NPC's that drop loot balls @@ -76,6 +70,7 @@ GMS.AllowedStools = { "material", } +GAMEMODE = GM or {} //Configuration for how data is saved //Can be: "GLON", "VON"(CURRENTLY BROKEN), "PON", "JSON" GAMEMODE.Compressor = "PON" |
