mirror of
https://github.com/devproje/px32-bot.git
synced 2024-11-26 10:43:05 +00:00
fix: manifest default class path fixed
This commit is contained in:
parent
a34d328b1c
commit
fd9d3844de
2 changed files with 2 additions and 2 deletions
|
@ -60,7 +60,7 @@ tasks {
|
|||
archiveVersion.set("")
|
||||
|
||||
manifest {
|
||||
attributes["Main-Class"] = "net.projecttl.p.x32.Run"
|
||||
attributes["Main-Class"] = "net.projecttl.p.x32.Px32"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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());
|
||||
});
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue