mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-22 08:11:59 +01:00
Fixed the /me command missing a space
By: Nathan Adams <dinnerbone@dinnerbone.com>
This commit is contained in:
parent
3f093fec4a
commit
04d50c0f67
@ -23,8 +23,7 @@ public class MeCommand extends VanillaCommand {
|
||||
StringBuilder message = new StringBuilder();
|
||||
message.append(sender.getName());
|
||||
if (args.length > 0) {
|
||||
message.append(args[0]);
|
||||
for (int i = 1; i < args.length; i++) {
|
||||
for (int i = 0; i < args.length; i++) {
|
||||
message.append(" ");
|
||||
message.append(args[i]);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user