Skip to content

Commit 0985c64

Browse files
committed
Poke retired and my name changed
1 parent 8999cdb commit 0985c64

File tree

20 files changed

+27
-27
lines changed

20 files changed

+27
-27
lines changed

src/main/java/com/mcmoddev/mmdbot/MMDBot.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
* @author Antoine Gagnon
4848
* @author williambl
4949
* @author sciwhiz12
50-
* @author ProxyNeko
50+
* @author KiriCattus
5151
* @author jriwanek
5252
*/
5353
public final class MMDBot {

src/main/java/com/mcmoddev/mmdbot/core/References.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
/**
3131
* Store settings that don't really change in here.
3232
*
33-
* @author ProxyNeko
33+
* @author KiriCattus
3434
*/
3535
public class References {
3636

src/main/java/com/mcmoddev/mmdbot/modules/commands/CommandModule.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
* This is the main class for setting up commands before they are loaded in by the bot,
6464
* this way we can disable and enable them at will. Or at least that is the hope.
6565
*
66-
* @author ProxyNeko
66+
* @author KiriCattus
6767
*/
6868
public class CommandModule {
6969

src/main/java/com/mcmoddev/mmdbot/modules/commands/bot/info/CmdAbout.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
* <p>
4141
* Takes no parameters.
4242
*
43-
* @author ProxyNeko
43+
* @author KiriCattus
4444
* @author Jriwanek
4545
* @author Curle
4646
*/
@@ -78,7 +78,7 @@ protected void execute(final SlashCommandEvent event) {
7878
embed.addField("Version:", References.VERSION, true);
7979
embed.addField("Issue Tracker:", Utils.makeHyperlink("MMDBot's Github", References.ISSUE_TRACKER),
8080
true);
81-
embed.addField("Current maintainers:", "jriwanek, WillBL, KiriCattus, sciwhiz12, Poke, Curle",
81+
embed.addField("Current maintainers:", "jriwanek, WillBL, KiriCattus, sciwhiz12, Curle",
8282
true);
8383
embed.setTimestamp(Instant.now());
8484
event.replyEmbeds(embed.build()).mentionRepliedUser(false).queue();

src/main/java/com/mcmoddev/mmdbot/modules/commands/bot/info/CmdUptime.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
/**
3636
* Shows how long the bot has been online.
3737
*
38-
* @author ProxyNeko
38+
* @author KiriCattus
3939
* @author Curle
4040
*/
4141
public class CmdUptime extends SlashCommand {

src/main/java/com/mcmoddev/mmdbot/modules/commands/bot/management/CmdAvatar.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
* /avatar https://media.discordapp.net/attachments/899012022006579220/899281929629728788/guineverebolb.png
4343
* /avatar [image]
4444
*
45-
* @author ProxyNeko
45+
* @author KiriCattus
4646
* @author Curle
4747
*/
4848
public class CmdAvatar extends SlashCommand {

src/main/java/com/mcmoddev/mmdbot/modules/commands/bot/management/CmdRename.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
* <p>
4040
* TODO: Figure out the cooldown system.
4141
*
42-
* @author ProxyNeko
42+
* @author KiriCattus
4343
* @author Curle
4444
*/
4545
public class CmdRename extends SlashCommand {

src/main/java/com/mcmoddev/mmdbot/modules/commands/bot/management/CmdShutdown.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
/**
3131
* Shut down the bot and the JDA instance gracefully.
3232
*
33-
* @author ProxyNeko
33+
* @author KiriCattus
3434
* @author Curle
3535
*/
3636
public class CmdShutdown extends SlashCommand {

src/main/java/com/mcmoddev/mmdbot/modules/commands/general/info/CmdCatFacts.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
/**
3838
* Displays a random cat fact, fetched from https://catfact.ninja/fact
3939
*
40-
* @author ProxyNeko
40+
* @author KiriCattus
4141
* @author Curle
4242
*/
4343
public final class CmdCatFacts extends SlashCommand {

src/main/java/com/mcmoddev/mmdbot/modules/commands/general/info/CmdMe.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
/**
3232
* Get information about the user who initiated the command.
3333
*
34-
* @author ProxyNeko
34+
* @author KiriCattus
3535
* @author sciwhiz12
3636
* @author Curle
3737
*/

0 commit comments

Comments
 (0)