Skip to content

Commit 0d997a8

Browse files
committed
[1.16.5] Fix MixinKubeJS
`'static' modifier of handler method does not match target in dev/latvian/kubejs/KubeJS::deduplicateModFile`
1 parent 277d701 commit 0d997a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src1165/src/main/java/zzzank/probejs/mixins/MixinKubeJS.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
public abstract class MixinKubeJS {
2222

2323
@Redirect(method = "<init>", at = @At(value = "INVOKE", target = "Lme/shedaniel/architectury/platform/Platform;getMods()Ljava/util/Collection;"), require = 0)
24-
private static Collection<Mod> deduplicateModFile() {
24+
private Collection<Mod> deduplicateModFile() {
2525
return Platform.getMods()
2626
.stream()
2727
.collect(Collectors.toMap(

0 commit comments

Comments
 (0)