Skip to content

Commit 2daaeeb

Browse files
committed
Edit purge alias
1 parent de28a75 commit 2daaeeb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ apply plugin: 'java'
77
apply plugin: 'maven'
88

99
group = 'main'
10-
version = '5.3.5'
10+
version = '5.3.6'
1111

1212
description = "A bot for the Facets tabletop RPG"
1313

src/main/java/commands/EmojiPurgeCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
import java.util.stream.Stream;
2424

2525
public class EmojiPurgeCommand implements CommandExecutor {
26-
@Command(async = true, aliases = {"~emojipurge", "~killeverylastoneofthem", "~scorchedearth", "~removeemojis", "~p"}, description = "Removes all plot point enhancement emojis from this channel", usage = "~removeemojis [all]")
26+
@Command(async = true, aliases = {"~emojipurge", "~killeverylastoneofthem", "~scorchedearth", "~removeemojis", "~purge"}, description = "Removes all plot point enhancement emojis from this channel", usage = "~removeemojis [all]")
2727
public void purgeEmojis(String[] params, DiscordApi api, MessageAuthor author, Message message, TextChannel channel, Server server) {
2828
boolean removeFromAllChannels = params.length == 1 && params[0].equals("all") || message.getContent().equals("~killeverylastoneofthem") || message.getContent().equals("~scorchedearth");
2929
AtomicInteger totalMessages = new AtomicInteger();

0 commit comments

Comments
 (0)