mirror of
https://github.com/mt-mods/mail.git
synced 2025-03-20 16:41:25 +00:00
remove prints
This commit is contained in:
parent
ea0de708da
commit
1f5a963d78
1 changed files with 0 additions and 2 deletions
2
gui.lua
2
gui.lua
|
@ -155,7 +155,6 @@ function mail.replyall(name, message)
|
||||||
if message.from ~= nil then
|
if message.from ~= nil then
|
||||||
recipients = message.from .. ", " .. recipients
|
recipients = message.from .. ", " .. recipients
|
||||||
end
|
end
|
||||||
print('parsing recipients: '..recipients)
|
|
||||||
recipients = mail.parse_player_list(recipients)
|
recipients = mail.parse_player_list(recipients)
|
||||||
for k,v in pairs(recipients) do
|
for k,v in pairs(recipients) do
|
||||||
if v == name then
|
if v == name then
|
||||||
|
@ -164,7 +163,6 @@ function mail.replyall(name, message)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
recipients = mail.concat_player_list(recipients)
|
recipients = mail.concat_player_list(recipients)
|
||||||
print('resulting recipients: '..recipients)
|
|
||||||
mail.show_compose(name, recipients, "Re: "..message.subject, replyfooter, message.cc)
|
mail.show_compose(name, recipients, "Re: "..message.subject, replyfooter, message.cc)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue