1
0
mirror of https://github.com/mcMMO-Dev/mcMMO.git synced 2025-07-04 06:34:44 +02:00

Fixed bug where using '/party chat message...' would result in the first

word of the message being printed repeatedly. Fixes 
This commit is contained in:
GJ
2013-03-02 20:07:01 -05:00
parent cf82ae4c66
commit 2feba8f64c
2 changed files with 2 additions and 1 deletions
Changelog.txt
src/main/java/com/gmail/nossr50/commands/party

@ -146,7 +146,7 @@ public class PartyCommand implements CommandExecutor {
String[] newArgs = new String[args.length - 1];
for (int i = 1; i < args.length; i++) {
newArgs[i - 1] = args[1];
newArgs[i - 1] = args[i];
}
return newArgs;