Don't show recipes for similarly name items

On item detail pages for items where multiple mods add an item of the
same name, recipes for both items would incorrectly be displayed.
This commit is contained in:
Andrew Miner
2015-03-13 22:09:12 -07:00
parent c9ab80e7ab
commit 08eba99413
2 changed files with 1 additions and 1 deletions
-1
View File
@@ -118,7 +118,6 @@ module.exports = class Recipe extends BaseModel
for stack in @output
actuallyProduces = not @isPassThroughFor stack.itemSlug
@_produces[stack.itemSlug.qualified] = actuallyProduces
@_produces[stack.itemSlug.item] = actuallyProduces
return @_produces[itemSlug.qualified] or @_produces[itemSlug.item]