diff options
| author | shedaniel <daniel@shedaniel.me> | 2021-06-22 01:11:38 +0800 |
|---|---|---|
| committer | shedaniel <daniel@shedaniel.me> | 2021-06-22 01:11:38 +0800 |
| commit | 0d1886cd3a85e7829646b666c36b35cf3321f1b0 (patch) | |
| tree | af34bc9109845fad52a25f2ec32fb4f1e1b8bb57 /api/src | |
| parent | 2cc2cfa70062efac58335d62ad8e47105c15fdd7 (diff) | |
| download | RoughlyEnoughItems-0d1886cd3a85e7829646b666c36b35cf3321f1b0.tar.gz RoughlyEnoughItems-0d1886cd3a85e7829646b666c36b35cf3321f1b0.tar.bz2 RoughlyEnoughItems-0d1886cd3a85e7829646b666c36b35cf3321f1b0.zip | |
Fix #559
Diffstat (limited to 'api/src')
| -rw-r--r-- | api/src/main/java/me/shedaniel/rei/api/common/entry/comparison/EntryComparatorRegistry.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/api/src/main/java/me/shedaniel/rei/api/common/entry/comparison/EntryComparatorRegistry.java b/api/src/main/java/me/shedaniel/rei/api/common/entry/comparison/EntryComparatorRegistry.java index ba77326e6..7c051bac1 100644 --- a/api/src/main/java/me/shedaniel/rei/api/common/entry/comparison/EntryComparatorRegistry.java +++ b/api/src/main/java/me/shedaniel/rei/api/common/entry/comparison/EntryComparatorRegistry.java @@ -28,7 +28,9 @@ import me.shedaniel.rei.api.common.registry.Reloadable; /** * Registry for registering custom methods for identifying variants of {@link T}. - * The default comparator is {@link EntryComparator#noop()}, which does not compare the NBT of the entries. + * The default comparator is {@link EntryComparator#noop()} when fuzzy, which does not compare the NBT of the entries; + * and nbt when exact. + * * <p> * This comparator is used when the comparison context is {@link ComparisonContext#EXACT}. */ |
