Fix saving

master
ShadowNinja 2014-01-28 19:32:48 -05:00
parent 8dfe708942
commit cc675398c1
1 changed files with 2 additions and 2 deletions

View File

@ -23,8 +23,8 @@ local function save_whitelist()
if err then
return
end
for item in pairs(whitelist) do
file:write(item)
for _, item in pairs(whitelist) do
file:write(item.."\n")
end
file:close()
end