mirror of
https://github.com/Creators-of-Create/Create.git
synced 2024-12-28 16:06:48 +01:00
Merge pull request #6406 from VoidLeech/mc1.18/fix-filter-ignoring-respect-data
Fix Filters not Respecting 'Respect Data' option
This commit is contained in:
commit
f09931c1a9
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