mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2025-06-25 10:14:43 +02:00
Fixed bug where using '/party chat message...' would result in the first
word of the message being printed repeatedly. Fixes #760
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user