Skip to content

Commit 471ef1f

Browse files
TechLord22serenibyss
authored andcommitted
fix data stick entry removal from AL (#2279)
1 parent a6f5057 commit 471ef1f

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/main/java/gregtech/api/recipes/machines/RecipeMapAssemblyLine.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,9 @@ public boolean removeRecipe(@NotNull Recipe recipe) {
103103
ResearchPropertyData data = recipe.getProperty(ResearchProperty.getInstance(), null);
104104
if (data != null) {
105105
for (ResearchPropertyData.ResearchEntry entry : data) {
106-
return removeDataStickEntry(entry.getResearchId(), recipe);
106+
removeDataStickEntry(entry.getResearchId(), recipe);
107107
}
108+
return true;
108109
}
109110
return false;
110111
}

0 commit comments

Comments
 (0)