Add credits command

This commit is contained in:
Encode42
2025-01-05 20:16:28 -08:00
committed by granny
parent 8ccbe12ed8
commit d9127f5c9b
4 changed files with 39 additions and 80 deletions

View File

@@ -8,10 +8,11 @@
import org.slf4j.Logger;
public class Commands {
@@ -245,6 +_,8 @@
@@ -245,6 +_,9 @@
StopCommand.register(this.dispatcher);
TransferCommand.register(this.dispatcher);
WhitelistCommand.register(this.dispatcher);
+ org.purpurmc.purpur.command.CreditsCommand.register(this.dispatcher); // Purpur - Add credits command
+ org.purpurmc.purpur.command.DemoCommand.register(this.dispatcher); // Purpur - Add demo command
+ org.purpurmc.purpur.command.PingCommand.register(this.dispatcher); // Purpur - Add ping command
}