We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1cdc9a commit cf9d5b1Copy full SHA for cf9d5b1
src/main/java/meteordevelopment/meteorclient/settings/AbstractRegistryListSetting.java
@@ -79,6 +79,7 @@ protected C load(NbtCompound tag) {
79
NbtList valueTag = tag.getListOrEmpty("value");
80
for (NbtElement tagI : valueTag) {
81
V value = this.registry.get(Identifier.of(tagI.asString().orElse("")));
82
+ if (value == null) continue;
83
84
if (filter == null || filter.test(value)) get().add(value);
85
}
0 commit comments