Skip to content

Commit 65ab37b

Browse files
committed
Fix reobfuscation issue
1 parent 873e3bd commit 65ab37b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

forge/src/main/java/org/embeddedt/modernfix/forge/mixin/bugfix/concurrency/NamespacedWrapperMixin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
@Mixin(targets = {"net/minecraftforge/registries/NamespacedWrapper"}, priority = 500)
1313
public abstract class NamespacedWrapperMixin<T> {
14-
@Shadow private volatile Map<TagKey<T>, HolderSet.Named<T>> tags;
14+
@Shadow(aliases = {"tags"}) private volatile Map<TagKey<T>, HolderSet.Named<T>> tags;
1515

1616
@Shadow(aliases = {"createTag"}) protected abstract HolderSet.Named<T> m_211067_(TagKey<T> key);
1717

0 commit comments

Comments
 (0)