= Doodle, Map, Perish, Ping, Manage

This commit is contained in:
Matthew Cech
2019-04-06 23:22:13 -07:00
parent 9ea68605a4
commit e5a40ae329
6 changed files with 44 additions and 17 deletions
+2 -2
View File
@@ -15,12 +15,12 @@ public class CommandPing extends Command
public CommandPing(KittyRole level, KittyRating rating) { super(level, rating); }
@Override
public String HelpText() { return "Will respond with Pong!"; }
public String HelpText() { return Localizer.Stub("Will respond with Pong!"); }
// Called when the command is run!
@Override
public void OnRun(KittyGuild guild, KittyChannel channel, KittyUser user, UserInput input, Response res)
{
res.Call("Pong!");
res.Call(Localizer.Stub("Pong!"));
}
}