diff --git a/bot/bot.lua b/bot/bot.lua index 4bffb2f..7af0c1c 100644 --- a/bot/bot.lua +++ b/bot/bot.lua @@ -176,7 +176,7 @@ end function write_to_file(filename, value) if (value) then local file = io.open(filename,"a") - file:write(value) + file:write(value, "\n") file:close() end end