Skip to content

Commit

Permalink
Fix #13: Transmutation recipes not removed when removing modules
Browse files Browse the repository at this point in the history
  • Loading branch information
62832 committed Jul 1, 2024
1 parent b179f9d commit c602006
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/main/java/gripe/_90/appliede/me/service/EMCStorage.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

public final class EMCStorage implements MEStorage {
private final KnowledgeService service;
private int highestTier;
private int highestTier = 1;

EMCStorage(KnowledgeService service) {
this.service = service;
Expand Down Expand Up @@ -342,10 +342,6 @@ private void addKnowledge(AEItemKey what, IKnowledgeProvider provider, Player pl
}

int getHighestTier() {
if (highestTier == 0) {
getAvailableStacks(new KeyCounter());
}

return highestTier;
}

Expand Down

0 comments on commit c602006

Please sign in to comment.