Skip to content
This repository was archived by the owner on Jun 3, 2024. It is now read-only.

Commit 5c633e6

Browse files
committed
Hotfix: Accessors must be interfaces
1 parent 3389d85 commit 5c633e6

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

patchwork-extensions-item/src/main/java/net/patchworkmc/mixin/extensions/item/ItemTagsAccessor.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@
2525
import net.minecraft.tag.ItemTags;
2626

2727
@Mixin(ItemTags.class)
28-
public class ItemTagsAccessor {
28+
public interface ItemTagsAccessor {
2929
@Accessor
30-
public static int getLatestVersion() {
30+
static int getLatestVersion() {
3131
throw new UnsupportedOperationException();
3232
}
3333
}

0 commit comments

Comments
 (0)