mirror of
https://github.com/GeyserMC/Geyser.git
synced 2025-01-08 03:22:09 +01:00
Read priority option from mappings
This commit is contained in:
parent
5ecc61fc1d
commit
12499bfba6
1 changed files with 4 additions and 0 deletions
|
@ -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 ?
|
||||
|
|
Loading…
Reference in a new issue