http_post_data -> export_url

Esse commit está contido em:
Jean-Patrick Guerrero 2019-11-01 02:04:35 +01:00
commit 4241c89c17
2 arquivos alterados com 3 adições e 3 exclusões

2
API.md
Ver arquivo

@ -204,7 +204,7 @@ You can add a stereotype like so:
craftguide.group_stereotypes.radioactive = "mod:item"
```
#### `craftguide.http_post_data`
#### `craftguide.export_url`
If set, the mod will export all the cached recipes and usages in a JSON format
to the given URL (HTTP support is required¹).

Ver arquivo

@ -1438,7 +1438,7 @@ local function get_init_items()
handle_aliases(hash)
sort(init_items)
if http and true_str(craftguide.http_post_data) then
if http and true_str(craftguide.export_url) then
local post_data = {
recipes = recipes_cache,
usages = usages_cache,
@ -1446,7 +1446,7 @@ local function get_init_items()
}
http.fetch_async({
url = craftguide.http_post_data,
url = craftguide.export_url,
post_data = write_json(post_data),
})
end