Merge pull request #19 from Wuzzy2/button

Add sfinv_buttons support
This commit is contained in:
kilbith 2017-03-19 21:29:47 +01:00 committed by GitHub
commit ee3984da77
2 changed files with 12 additions and 0 deletions

1
depends.txt Normal file
View File

@ -0,0 +1 @@
sfinv_buttons?

View File

@ -474,4 +474,15 @@ mt.register_craft({
burntime = 10
})
if mt.get_modpath("sfinv_buttons") then
sfinv_buttons.register_button("craftguide", {
title = "Crafting guide",
tooltip = "Shows a list of available crafting recipes, cooking recipes and fuels",
action = function(player)
craftguide:on_use(nil, player)
end,
image = "craftguide_book.png",
})
end
mt.register_alias("xdecor:crafting_guide", "craftguide:book")