KubeJS

KubeJS

107M Downloads

Set should return a sorted set, current one gives many random orderer results

pietro-lopes opened this issue ยท 0 comments

commented

When an error occurs on the recipe schema, it lists the invalid set at random order for each, making it hard to follow.

@NotNull
@Override
public Set<Map.Entry<RecipeKey<?>, Object>> entrySet() {
if (holderSet == null) {
holderSet = Cast.to(Set.of(holders));
}
return holderSet;
}