Read priority option from mappings

This commit is contained in:
Eclipse 2024-12-12 10:53:46 +00:00
parent 5ecc61fc1d
commit 12499bfba6
No known key found for this signature in database
GPG key ID: 95E6998F82EC938A

View file

@ -140,6 +140,10 @@ public class MappingsReader_v2 extends MappingsReader {
readPredicates(builder, node.get("predicate"));
if (node.has("priority")) {
builder.priority(node.get("priority").asInt());
}
builder.bedrockOptions(readBedrockOptions(node.get("bedrock_options")));
DataComponents components = new DataComponents(new HashMap<>()); // TODO faster map ?