Disabled REI as it crashes with release 1.19

This commit is contained in:
Frank 2022-06-08 01:26:32 +02:00
parent 29d99fecfe
commit 4d152c596e
2 changed files with 7 additions and 1 deletions

View file

@ -16,6 +16,7 @@ import com.google.common.collect.Sets;
import org.betterx.bclib.BCLib;
import org.betterx.bclib.api.v2.levelgen.biomes.InternalBiomeAPI;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
@ -106,6 +107,9 @@ public class TagType<T> {
}
public Set<TagEntry> getSetForTag(TagKey<T> tag) {
if (tag==null) {
return new HashSet<>();
}
return getSetForTag(tag.location());
}