Implementado em sfinv_menu

master
BrunoMine 2018-12-29 12:06:59 -02:00
parent 0070e57ecf
commit e13f4c7250
2 changed files with 12 additions and 0 deletions

View File

@ -1,2 +1,3 @@
default
intllib?
sfinv_menu?

View File

@ -63,3 +63,14 @@ minetest.register_on_player_receive_fields(function(player, formname, fields)
end
end)
-- Botão em menu compacto do inventario
if sfinv_menu then
sfinv_menu.registrar_botao("telepro:micro_menu", {
titulo = S("Meu Balão"),
icon = "telepro_mapa.png",
func = function(player)
telepro.acessar(player)
end,
})
end