28 lines
838 B
Java
28 lines
838 B
Java
package com.fpghoti.biscuit.commands.client;
|
|
|
|
import com.fpghoti.biscuit.Main;
|
|
import com.fpghoti.biscuit.biscuit.Biscuit;
|
|
import com.fpghoti.biscuit.commands.base.ClientCommand;
|
|
|
|
import net.dv8tion.jda.api.events.message.MessageReceivedEvent;
|
|
|
|
public class PingCommand extends ClientCommand{
|
|
|
|
public PingCommand() {
|
|
name = "Ping";
|
|
description = "Pings the bot.";
|
|
usage = Main.getMainBiscuit().getProperties().getCommandSignifier() + "ping";
|
|
minArgs = 0;
|
|
maxArgs = 0;
|
|
identifiers.add("ping");
|
|
}
|
|
|
|
@Override
|
|
public void execute(String[] args, MessageReceivedEvent event) {
|
|
Biscuit b = Biscuit.getBiscuit(event.getGuild());
|
|
b.log(event.getAuthor().getName() + " issued a command: -ping");
|
|
event.getTextChannel().sendMessage("Pong!").queue();
|
|
}
|
|
|
|
}
|