sorcery  Diff

Differences From Artifact [4be66a79c1]:

To Artifact [38382a5879]:


     5      5   		 0.4,  0.5,  0.5;
     6      6   	};
     7      7   }
     8      8   
     9      9   local function
    10     10   findextract(herb)
    11     11   	for name, e in pairs(sorcery.data.extracts) do
    12         -		if e[1] == herb then
           12  +		local found = false
           13  +		if sorcery.lib.item.groupmatch(e[1], herb) then
    13     14   			return name, {
    14     15   				color = e[2];
    15     16   				reqamt = e[3] or 3;
    16     17   				reqtime = e[4] or 75;
    17     18   			}
    18     19   		end
    19     20   	end