From 1f5a963d782a1ed8277ee8d9d0305247a223b5f0 Mon Sep 17 00:00:00 2001 From: Peter Nerlich Date: Mon, 10 Aug 2020 12:19:42 +0200 Subject: [PATCH] remove prints --- gui.lua | 2 -- 1 file changed, 2 deletions(-) diff --git a/gui.lua b/gui.lua index b7efc5e..0739d9d 100644 --- a/gui.lua +++ b/gui.lua @@ -155,7 +155,6 @@ function mail.replyall(name, message) if message.from ~= nil then recipients = message.from .. ", " .. recipients end - print('parsing recipients: '..recipients) recipients = mail.parse_player_list(recipients) for k,v in pairs(recipients) do if v == name then @@ -164,7 +163,6 @@ function mail.replyall(name, message) end end recipients = mail.concat_player_list(recipients) - print('resulting recipients: '..recipients) mail.show_compose(name, recipients, "Re: "..message.subject, replyfooter, message.cc) end