fix(inferium-harvester): isSeed

This commit is contained in:
Guillaume ARM 2024-05-20 19:43:23 +02:00
parent c42b8472dc
commit 6c38ea6845

View File

@ -118,7 +118,7 @@ local function getSeedNameFromCropName(cropName)
end
function isSeed(item)
local tags = item.tags or {}
local tags = item and item.tags or {}
return tags['forge:seeds'] or tags['mysticalagriculture:seeds'] or false
end