Fixed small typo in MySQL module

This commit is contained in:
Timo Smit 2017-03-17 09:29:20 +01:00
parent 71949e069f
commit 8e45df170b
1 changed files with 1 additions and 1 deletions

View File

@ -133,7 +133,7 @@ function mysql.getLevels()
return levels
end
function sqlite3.getLevel(id)
function mysql.getLevel(id)
cur = assert(con:execute("SELECT * FROM `level` WHERE `id`='"..tonumber(id).."'"))
local level = cur:fetch({}, "a")