So I'm making a report plugin but when they specify a reason I don't know how to allow all arguments past #2
code:
code:
Code:
if(label.equalsIgnoreCase("report")){
if(args.length == 2){
Player target = Bukkit.getPlayer(args[0]);
if(target != null){
p.sendMessage("§6MCKitPvP »§7 You have reported " + target.getName() + " for " + args[1] + "!" );

