Compiling and working on spigot

This commit is contained in:
Konicai 2023-06-01 21:14:49 -04:00
parent db5ccff9e5
commit 8d7e789338
No known key found for this signature in database
GPG Key ID: 710D09287708C823
2 changed files with 2 additions and 6 deletions

View File

@ -6,11 +6,6 @@ version: ${version}
softdepend: ["ViaVersion", "floodgate"]
api-version: 1.13
folia-supported: true
commands:
geyser:
description: The main command for Geyser.
usage: /geyser <subcommand>
permission: geyser.command
permissions:
geyser.command:
default: true

View File

@ -55,6 +55,7 @@ import java.io.File;
import java.io.IOException;
import java.net.InetSocketAddress;
import java.nio.file.Path;
import java.util.Objects;
import java.util.UUID;
@Plugin(value = "geyser")
@ -139,7 +140,7 @@ public class GeyserSpongePlugin implements GeyserBootstrap {
this.geyser = GeyserImpl.load(PlatformType.SPONGE, this);
this.geyserCommandManager = new GeyserCommandManager(geyser); // todo: commands
this.geyserCommandManager = new GeyserCommandManager(geyser, Objects.requireNonNull(null)); // todo: commands
this.geyserCommandManager.init();
}