3
0
Mirror von https://github.com/GeyserMC/Geyser.git synchronisiert 2024-09-28 06:01:10 +02:00

Some minor changes

Dieser Commit ist enthalten in:
Tim203 2024-02-25 22:59:41 +01:00
Ursprung 9748763097
Commit 4afef52928
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
4 geänderte Dateien mit 4 neuen und 3 gelöschten Zeilen

Datei anzeigen

@ -1,5 +1,5 @@
plugins {
id("geyser.shadow-conventions")
id("geyser.publish-conventions")
}
dependencies {

Datei anzeigen

@ -259,6 +259,6 @@ public class GeyserVelocityPlatform implements GeyserBootstrap, IsolatedPlatform
@Override
public void disable() {
this.onGeyserDisable();
this.onGeyserShutdown();
}
}

Datei anzeigen

@ -120,7 +120,7 @@ public class GeyserViaProxyPlugin extends ViaProxyPlugin implements GeyserBootst
return;
}
this.geyser = GeyserImpl.load(PlatformType.VIAPROXY, this);
this.geyser = GeyserImpl.load(PlatformType.VIAPROXY, this, null);
LoopbackUtil.checkAndApplyLoopback(this.logger);
}

Datei anzeigen

@ -54,6 +54,7 @@ dependencies {
// Test
testImplementation(libs.junit)
testImplementation(projects.isolation)
// Annotation Processors
compileOnly(projects.ap)