Fix mixin target
Changes to be committed: modified: src/main/java/org/dimdev/dimcore/schematic/v2/Schematic.java modified: src/main/java/org/dimdev/dimdoors/mixin/ListTagAccessor.java
This commit is contained in:
parent
4d41a00933
commit
bb98adf294
2 changed files with 2 additions and 3 deletions
|
@ -3,7 +3,6 @@ package org.dimdev.dimcore.schematic.v2;
|
|||
import java.nio.ByteBuffer;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.stream.IntStream;
|
||||
|
||||
import com.mojang.serialization.Codec;
|
||||
import com.mojang.serialization.codecs.RecordCodecBuilder;
|
||||
|
|
|
@ -10,8 +10,8 @@ import net.minecraft.nbt.Tag;
|
|||
|
||||
@Mixin(ListTag.class)
|
||||
public interface ListTagAccessor {
|
||||
@Invoker("<init>(Ljava/util/List;B)V")
|
||||
static ListTag of(List<Tag> list, byte type) {
|
||||
@Invoker("<init>")
|
||||
static ListTag invokeInit(List<Tag> list, byte type) {
|
||||
throw new AssertionError();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue