Disabled REI as it crashes with release 1.19
This commit is contained in:
parent
29d99fecfe
commit
4d152c596e
2 changed files with 7 additions and 1 deletions
|
@ -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());
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue