diff options
| -rw-r--r-- | depends.txt | 1 | ||||
| -rw-r--r-- | init.lua | 11 | 
2 files changed, 12 insertions, 0 deletions
diff --git a/depends.txt b/depends.txt new file mode 100644 index 0000000..84ff3c0 --- /dev/null +++ b/depends.txt @@ -0,0 +1 @@ +sfinv_buttons? @@ -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")  | 
