diff --git a/nova/src/main/kotlin/xyz/xenondevs/nova/resources/builder/ResourcePackBuilder.kt b/nova/src/main/kotlin/xyz/xenondevs/nova/resources/builder/ResourcePackBuilder.kt index 04e615980a..927b744a9a 100644 --- a/nova/src/main/kotlin/xyz/xenondevs/nova/resources/builder/ResourcePackBuilder.kt +++ b/nova/src/main/kotlin/xyz/xenondevs/nova/resources/builder/ResourcePackBuilder.kt @@ -413,6 +413,12 @@ class ResourcePackBuilder internal constructor() { fun resolveVanillaMeta(path: ResourcePath): Path = MCASSETS_DIR.resolve("${path.filePath}.mcmeta") + /** + * Resolves the file under [path] in the vanilla minecraft assets. + */ + fun resolveVanilla(path: String): Path = + MCASSETS_DIR.resolve(path) + /** * Resolves the file under [path] in the resource pack. */