3
0
Mirror von https://github.com/GeyserMC/Geyser.git synchronisiert 2024-10-03 16:31:14 +02:00

Only pull data from the map once

Dieser Commit ist enthalten in:
rtm516 2024-08-09 13:52:25 +01:00
Ursprung 0666403243
Commit 64974d6340
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 331715B8B007C67A

Datei anzeigen

@ -213,7 +213,8 @@ public class GeyserExtensionLoader extends ExtensionLoader {
GeyserExtensionDescription description = this.extensionDescription(path);
// Remove the old extension with the same ID if it exists
if (extensionFiles.containsKey(description.id())) {
Path oldExtensionFile = extensionFiles.get(description.id());
if (oldExtensionFile != null && Files.exists(oldExtensionFile)) {
Files.delete(extensionFiles.get(description.id()));
}