Fix inbox clearing when craft search is canceled

apparantly fields.clear is what xdecor's craft guide used to clear a search. fixed now
This commit is contained in:
Elkien3 2017-10-17 15:47:06 -05:00
parent 1dfe61d83f
commit b03a3c4a16

View File

@ -104,7 +104,7 @@ function email.get_formspec(name)
end end
fs = fs .. "]" fs = fs .. "]"
fs = fs .. "button[0,7.25;2,1;clear;Delete All]" fs = fs .. "button[0,7.25;2,1;clearinbox;Delete All]"
--fs = fs .. "button[0,7.25;2,1;clear;Mark as read]" --fs = fs .. "button[0,7.25;2,1;clear;Mark as read]"
fs = fs .. "button_exit[10.1,7.25;2,1;close;Close]" fs = fs .. "button_exit[10.1,7.25;2,1;close;Close]"
fs = fs .. "label[2,7.4;Exit then type /mail username message to reply]" fs = fs .. "label[2,7.4;Exit then type /mail username message to reply]"
@ -137,7 +137,7 @@ function email.show_inbox(name, text_mode)
end end
minetest.register_on_player_receive_fields(function(player,formname,fields) minetest.register_on_player_receive_fields(function(player,formname,fields)
if fields.clear then if fields.clearinbox then
local name = player:get_player_name() local name = player:get_player_name()
email.clear_inbox(name) email.clear_inbox(name)
minetest.chat_send_player(name, "Inbox cleared!") minetest.chat_send_player(name, "Inbox cleared!")