mail/gui.lua
2024-10-25 23:00:27 +02:00

22 lines
486 B
Lua

if core.get_modpath("unified_inventory") then
unified_inventory.register_button("mail", {
type = "image",
image = "mail_button.png",
tooltip = "Mail",
action = function(player)
mail.show_mail_menu(player:get_player_name())
end
})
end
if core.get_modpath("sfinv_buttons") then
sfinv_buttons.register_button("mail", {
title = "Mail",
image = "mail_button.png",
action = function(player)
mail.show_mail_menu(player:get_player_name())
end
})
end