Skip to content

Commit

Permalink
Make join case sensitive
Browse files Browse the repository at this point in the history
  • Loading branch information
Mindgamesnl committed Feb 15, 2024
1 parent 7f9973d commit 7510c07
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion plugin/src/main/bash/data.bin
Original file line number Diff line number Diff line change
@@ -1 +1 @@
BUILD_NUM="1270"
BUILD_NUM="1280"
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public void onExecute(User sender, String[] args) {
throw new CommandError(StorageKey.MESSAGE_VOICE_CHANNEL_ALREADY_MEMBER.getString());
}

String channelName = args[0].toLowerCase();
String channelName = args[0];
Channel targetChannel = getService(VoiceChannelService.class).getChannel(channelName);
if (targetChannel == null) {
throw new CommandError(StorageKey.MESSAGE_VOICE_CHANNEL_NOT_FOUND.getString());
Expand Down
2 changes: 1 addition & 1 deletion plugin/src/main/resources/data.bin
Original file line number Diff line number Diff line change
@@ -1 +1 @@
BUILD_NUM="1270"
BUILD_NUM="1280"
4 changes: 2 additions & 2 deletions plugin/src/main/resources/openaudiomc-build.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
BUILD_VERSION="1270"
BUILD_COMMIT="0b2201064ee53fe74917f71014abaa0fd363804e"
BUILD_VERSION="1280"
BUILD_COMMIT="7f9973d5fc2b634459781e5554fb1f33190350b7"
BUILD_AUTHOR="Mats"

0 comments on commit 7510c07

Please sign in to comment.