Skip to content

Commit d69f282

Browse files
committed
Missing mixin
1 parent 6c88f89 commit d69f282

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ plugins {
55
id 'java'
66
id 'idea'
77
id 'maven-publish'
8-
id 'net.neoforged.moddev' version "2.0.75"
8+
id 'net.neoforged.moddev' version "2.0.91"
99
}
1010

1111
ext.ENV = System.getenv()

src/main/java/dev/latvian/mods/klib/core/mixin/StreamCodecMixin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
import org.spongepowered.asm.mixin.Mixin;
66

77
@Mixin(StreamCodec.class)
8-
public class StreamCodecMixin<B, V> implements KLibStreamCodec<B, V> {
8+
public interface StreamCodecMixin<B, V> extends KLibStreamCodec<B, V> {
99
}

0 commit comments

Comments
 (0)