1
0
mirror of https://github.com/GeyserMC/Geyser.git synced 2025-12-19 23:09:29 +00:00

Changed the id in resource processing to be lowercase (#3329)

This commit is contained in:
Konicai
2022-10-02 18:25:49 -04:00
committed by GitHub
parent 7653a626af
commit fc25592df6

View File

@@ -11,7 +11,7 @@ tasks {
processResources {
filesMatching(listOf("plugin.yml", "bungee.yml", "velocity-plugin.json", "META-INF/sponge_plugins.json")) {
expand(
"id" to "Geyser",
"id" to "geyser",
"name" to "Geyser",
"version" to project.version,
"description" to project.description,
@@ -30,4 +30,4 @@ java {
targetCompatibility = JavaVersion.VERSION_16
withSourcesJar()
}
}