3
0
Mirror von https://github.com/GeyserMC/Geyser.git synchronisiert 2024-07-03 20:08:08 +02:00

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

Dieser Commit ist enthalten in:
Konicai 2022-10-02 18:25:49 -04:00 committet von GitHub
Ursprung 7653a626af
Commit fc25592df6
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 4AEE18F83AFDEB23

Datei anzeigen

@ -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()
}
}