diff options
| author | shedaniel <daniel@shedaniel.me> | 2021-11-05 01:34:31 +0800 |
|---|---|---|
| committer | shedaniel <daniel@shedaniel.me> | 2021-11-05 01:34:31 +0800 |
| commit | 94ff6aac084cfba2ce7eab00da76b7fe2992e657 (patch) | |
| tree | 99905bcb0501ebe1a1a9b2f6a8b5dffe53baf75b /forge/src/main | |
| parent | 23e81b494b73f74c416ec3cf2147e6520608a258 (diff) | |
| parent | 987ee5269a9bc61b9ab4d07ea0986629b1421964 (diff) | |
| download | RoughlyEnoughItems-94ff6aac084cfba2ce7eab00da76b7fe2992e657.tar.gz RoughlyEnoughItems-94ff6aac084cfba2ce7eab00da76b7fe2992e657.tar.bz2 RoughlyEnoughItems-94ff6aac084cfba2ce7eab00da76b7fe2992e657.zip | |
Merge branch '6.x-1.17' into 7.x-1.18
# Conflicts:
# gradle.properties
Diffstat (limited to 'forge/src/main')
| -rw-r--r-- | forge/src/main/java/me/shedaniel/rei/forge/RoughlyEnoughItemsForge.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/forge/src/main/java/me/shedaniel/rei/forge/RoughlyEnoughItemsForge.java b/forge/src/main/java/me/shedaniel/rei/forge/RoughlyEnoughItemsForge.java index dd5824c70..e6b2390db 100644 --- a/forge/src/main/java/me/shedaniel/rei/forge/RoughlyEnoughItemsForge.java +++ b/forge/src/main/java/me/shedaniel/rei/forge/RoughlyEnoughItemsForge.java @@ -66,7 +66,7 @@ public class RoughlyEnoughItemsForge { .map(IModInfo::getModId) .collect(Collectors.toList()); for (ModFileScanData.AnnotationData annotation : data.getAnnotations()) { - if (annotationType.equals(annotation.targetType())) { + if (annotationType.equals(annotation.annotationType())) { try { Class<T> clazz = (Class<T>) Class.forName(annotation.memberName()); if (predicate.test(clazz)) { |
