Differences From Artifact [4be66a79c1]:
- File distiller.lua — part of check-in [17322fc1b2] at 2021-10-27 17:10:12 on branch trunk — fix wine compat (user: lexi, size: 4997) [annotate] [blame] [check-ins using]
To Artifact [38382a5879]:
- File distiller.lua — part of check-in [9599e69051] at 2021-10-27 18:11:38 on branch trunk — fix group matching (user: lexi, size: 5046) [annotate] [blame] [check-ins using]
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