Skip to content

Commit 2856845

Browse files
fixed reply command
1 parent 9a5885b commit 2856845

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>org.zeroBzeroT.chatCo</groupId>
77
<artifactId>ChatCoPlus</artifactId>
8-
<version>1.0.5</version>
8+
<version>1.0.6</version>
99
<packaging>jar</packaging>
1010
<name>${project.artifactId}</name>
1111

src/main/java/org/zeroBzeroT/chatCo/Whispers.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ public boolean onCommand(final @NotNull Main plugin, final @NotNull CommandSende
161161
}
162162

163163
return true;
164-
} else if (plugin.getConfig().getBoolean("ChatCo.replyCommands", true) && (cmd.getName().equalsIgnoreCase("/r") || cmd.getName().equalsIgnoreCase("/reply"))) {
164+
} else if (plugin.getConfig().getBoolean("ChatCo.replyCommands", true) && (cmd.getName().equalsIgnoreCase("r") || cmd.getName().equalsIgnoreCase("reply"))) {
165165
if (args.length == 0) {
166166
sender.sendMessage(Component.text("Usage: /r <message>", NamedTextColor.YELLOW));
167167
return true;

0 commit comments

Comments
 (0)