Implemented client_serverlist module! Close #200

* Will store servers that are not already in the list when logging in
* Can add servers manually if required too
* Fixed a bug in table.size
This commit is contained in:
BeniS
2013-02-24 00:41:21 +13:00
parent 2296e35174
commit 8e9f65779c
11 changed files with 444 additions and 12 deletions

View File

@@ -146,7 +146,7 @@ end
function table.size(t)
local size = 0
for i, n in pairs(table) do
for i, n in pairs(t) do
size = size + 1
end