mirror of
https://github.com/AlmostReliable/almostunified.git
synced 2024-11-14 19:25:13 -05:00
don't handle unnecessary duplicate links
This commit is contained in:
parent
08d3b2bdaa
commit
bd8497f31c
1 changed files with 1 additions and 1 deletions
|
@ -112,7 +112,7 @@ public class RecipeTransformer {
|
||||||
}
|
}
|
||||||
|
|
||||||
for (RecipeLink recipeLink : duplicationConfig.isStrictMode() ? recipeLinks : unified) {
|
for (RecipeLink recipeLink : duplicationConfig.isStrictMode() ? recipeLinks : unified) {
|
||||||
if (handleDuplicate(recipeLink, recipeLinks)) {
|
if (handleDuplicate(recipeLink, recipeLinks) && recipeLink.getDuplicateLink() != null) {
|
||||||
duplicates.add(recipeLink.getDuplicateLink());
|
duplicates.add(recipeLink.getDuplicateLink());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue