mirror of
https://github.com/Creators-of-Create/Create.git
synced 2025-01-13 15:56:38 +01:00
Fix filters ignoring 'respect data' option
This commit is contained in:
parent
d66170c8fe
commit
12bf210f55
1 changed files with 1 additions and 1 deletions
|
@ -128,7 +128,7 @@ public class FilterItemStack {
|
||||||
containedItems.add(FilterItemStack.of(stackInSlot));
|
containedItems.add(FilterItemStack.of(stackInSlot));
|
||||||
}
|
}
|
||||||
|
|
||||||
shouldRespectNBT = !defaults ? false
|
shouldRespectNBT = defaults ? false
|
||||||
: filter.getTag()
|
: filter.getTag()
|
||||||
.getBoolean("RespectNBT");
|
.getBoolean("RespectNBT");
|
||||||
isBlacklist = defaults ? false
|
isBlacklist = defaults ? false
|
||||||
|
|
Loading…
Reference in a new issue