diff options
| author | Alexander Pickering <alexandermpickering@gmail.com> | 2018-03-23 22:14:08 -0400 |
|---|---|---|
| committer | Alexander Pickering <alexandermpickering@gmail.com> | 2018-03-23 22:14:08 -0400 |
| commit | 563f3e3960221fd9144e9adbde53c09392f772dd (patch) | |
| tree | d4df5ddd25104e52b614a59ae80269bf190fecef /gamemode/core/database | |
| parent | e2428796b9afe019ae6ca45e07fbe1aaa6963917 (diff) | |
| download | artery-563f3e3960221fd9144e9adbde53c09392f772dd.tar.gz artery-563f3e3960221fd9144e9adbde53c09392f772dd.tar.bz2 artery-563f3e3960221fd9144e9adbde53c09392f772dd.zip | |
Fix a syntax error
Fix a syntax error that get triggered by new player being made.
Diffstat (limited to 'gamemode/core/database')
| -rw-r--r-- | gamemode/core/database/sv_setup.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gamemode/core/database/sv_setup.lua b/gamemode/core/database/sv_setup.lua index 0db0a9d..becdcf5 100644 --- a/gamemode/core/database/sv_setup.lua +++ b/gamemode/core/database/sv_setup.lua @@ -146,7 +146,7 @@ function sql.CreatePlayerTable(ply) log.debug("got steam id it was " .. tostring(s64)) --print("steamid was", s64) local plytbl = data.newdata() - log.deubg("about to ask for new meta") + log.debug("about to ask for new meta") local plymet = data.newmeta() log.debug("About to get plydata and plymeta") local plydata = util.TableToJSON(plytbl) |
