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.
2 parents 3335eae + 4d2128f commit a4eb030Copy full SHA for a4eb030
src/main/java/net/wurstclient/WurstTranslator.java
@@ -232,8 +232,11 @@ private boolean isBuiltInWurstResourcePack(Resource resource)
232
.flatMap(Resource::knownPackInfo).orElse(null);
233
if(knownPack == null)
234
return false;
235
-
236
- return "fabric".equals(knownPack.namespace())
+
+ // Note: Namespace can be "fabric" or "vanilla" depending on
237
+ // Fabric API version (changed in 0.139.3+1.21.11).
238
+ return ("fabric".equals(knownPack.namespace())
239
+ || "vanilla".equals(knownPack.namespace()))
240
&& "wurst".equals(knownPack.id());
241
}
242
0 commit comments