fix: manifest default class path fixed

This commit is contained in:
Project_IO 2024-09-02 00:13:58 +09:00
parent a34d328b1c
commit fd9d3844de
2 changed files with 2 additions and 2 deletions

View file

@ -60,7 +60,7 @@ tasks {
archiveVersion.set("")
manifest {
attributes["Main-Class"] = "net.projecttl.p.x32.Run"
attributes["Main-Class"] = "net.projecttl.p.x32.Px32"
}
}
}

View file

@ -19,7 +19,7 @@ public class Px32 {
private void register() {
commands.forEach(command -> {
jda.upsertCommand(command.getData()).queue();
log.info("Registered command: {}", command);
log.info("Registered command: {}", command.getData().getName());
});
}