Skip to content

Commit

Permalink
Do not check white-/blacklist on extract
Browse files Browse the repository at this point in the history
Slightly rollbacks #384, since extractables are filtered in getAvailableItems
Allows extracting inaccessible items from cells and overriding SB behavior via reporting non-extractables
  • Loading branch information
NotMyWing committed Feb 1, 2024
1 parent 0fd0ed1 commit 88635d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/appeng/me/storage/MEInventoryHandler.java
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ public void setSticky(boolean isSticky) {
}

protected boolean canExtract(T request) {
return this.hasReadAccess && passesBlackOrWhitelist(request);
return this.hasReadAccess;
}

public boolean passesBlackOrWhitelist(T input) {
Expand Down

0 comments on commit 88635d9

Please sign in to comment.