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:
SD 2020-09-11 14:33:28 +05:30
parent 4d41a00933
commit bb98adf294
No known key found for this signature in database
GPG key ID: E36B57EE08544BC5
2 changed files with 2 additions and 3 deletions

View file

@ -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;

View file

@ -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();
}
}