Minor cleaning

This commit is contained in:
Jean-Patrick Guerrero
2019-10-10 17:46:12 +02:00
parent 4fb4fe1763
commit ee1eac039e
2 changed files with 4 additions and 12 deletions

11
API.md
View File

@ -65,15 +65,6 @@ craftguide.register_craft({
}
},
{
result = "default:mese 2",
items = {
"default:mese_crystal, default:mese_crystal",
"default:mese_crystal, default:mese_crystal",
"default:mese_crystal, default:mese_crystal",
}
},
big = {
result = "default:mese 4",
items = {
@ -90,7 +81,7 @@ Recipes can be registered via an URL (HTTP support is required¹):
```Lua
craftguide.register_craft({
url = https://raw.githubusercontent.com/minetest-mods/craftguide/master/test.json
url = "https://raw.githubusercontent.com/minetest-mods/craftguide/master/test.json"
})
```