Skip to content

Commit

Permalink
fix data stick entry removal from AL (#2279)
Browse files Browse the repository at this point in the history
  • Loading branch information
TechLord22 authored and serenibyss committed Dec 12, 2023
1 parent a6f5057 commit 471ef1f
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,9 @@ public boolean removeRecipe(@NotNull Recipe recipe) {
ResearchPropertyData data = recipe.getProperty(ResearchProperty.getInstance(), null);
if (data != null) {
for (ResearchPropertyData.ResearchEntry entry : data) {
return removeDataStickEntry(entry.getResearchId(), recipe);
removeDataStickEntry(entry.getResearchId(), recipe);
}
return true;
}
return false;
}
Expand Down

0 comments on commit 471ef1f

Please sign in to comment.