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 3dc3d59 commit 810aacbCopy full SHA for 810aacb
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