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 Dec 10, 2023
1 parent 5d64ceb commit 055ce6a
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,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 055ce6a

Please sign in to comment.