17,101
edits
(Fix numerous issues) |
(Fix call to _getItemSources) |
||
Line 603: | Line 603: | ||
local category = GameData.getEntityByName(SkillData.Farming.categories, categoryName) | local category = GameData.getEntityByName(SkillData.Farming.categories, categoryName) | ||
if category == nil then | if category == nil then | ||
return 'ERROR: Invalid farming category. Please choose Allotments, Herbs, or Trees' | return 'ERROR: Invalid farming category. Please choose Allotments, Herbs, or Trees[[Category:Pages with script errors]]' | ||
end | end | ||
local seedList = GameData.getEntities(SkillData.Farming.recipes, | local seedList = GameData.getEntities(SkillData.Farming.recipes, | ||
Line 642: | Line 642: | ||
end | end | ||
result = result..'||data-sort-value="'..productItem.sellsFor..'"|'..Icons.GP(productItem.sellsFor) | result = result..'||data-sort-value="'..productItem.sellsFor..'"|'..Icons.GP(productItem.sellsFor) | ||
result = result..'||'..ItemSourceTables._getItemSources(seedItem | result = result..'||'..ItemSourceTables._getItemSources(seedItem) | ||
end | end | ||
end | end | ||
Line 689: | Line 689: | ||
local category = GameData.getEntityByName(SkillData.Farming.categories, areaName) | local category = GameData.getEntityByName(SkillData.Farming.categories, areaName) | ||
if category == nil then | if category == nil then | ||
return 'ERROR: Invalid farming category. Please choose Allotments, Herbs, or Trees' | return 'ERROR: Invalid farming category. Please choose Allotments, Herbs, or Trees[[Category:Pages with script errors]]' | ||
end | end | ||
local patches = GameData.getEntities(SkillData.Farming.plots, | local patches = GameData.getEntities(SkillData.Farming.plots, |