Add comments

This commit is contained in:
Jean-Patrick Guerrero 2020-07-18 01:54:28 +02:00
parent e4e93077c7
commit be4aebdacd
1 changed files with 4 additions and 2 deletions

View File

@ -1556,14 +1556,16 @@ local function get_init_items()
if name ~= "" and show_item(def) then
cache_drops(name, def.drop)
if not fuel_cache[name] then
if not fuel_cache[name] then --[*]
cache_fuel(name)
end
if not recipes_cache[name] then
if not recipes_cache[name] then --[*]
cache_recipes(name)
end
--[*] `core.register_craft` override may have cached them already
_preselect[name] = true
end
end