mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-22 13:16:45 +01: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:
parent
cf82ae4c66
commit
2feba8f64c
@ -12,6 +12,7 @@ Version 1.4.01-dev
|
||||
= Fixed bug where /mctop and /mcrank wouldn't show overall power levels for servers using Flatfile
|
||||
= Fixed bug where Smelting would throw consistent errors due to offline players
|
||||
= Fixed bug where repairing an mcMMO ability-buffed item with mcMMO repair could take the enchant but leave the lore tag
|
||||
= Fixed bug where using '/party chat message...' would result in the first word of the message being printed repeatedly
|
||||
|
||||
Version 1.4.00
|
||||
+ Added new Child Skill - Smelting!
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user