Use Join(string, " ") instead of Join(string)
This commit is contained in:
		| @@ -45,7 +45,7 @@ public class DisguiseCommand extends DisguiseBaseCommand implements TabCompleter | |||||||
|         Disguise disguise; |         Disguise disguise; | ||||||
|  |  | ||||||
|         try { |         try { | ||||||
|             disguise = DisguiseParser.parseDisguise(sender, getPermNode(), DisguiseParser.split(StringUtils.join(args)), getPermissions(sender)); |             disguise = DisguiseParser.parseDisguise(sender, getPermNode(), DisguiseParser.split(StringUtils.join(args, " ")), getPermissions(sender)); | ||||||
|         } |         } | ||||||
|         catch (DisguiseParseException ex) { |         catch (DisguiseParseException ex) { | ||||||
|             if (ex.getMessage() != null) { |             if (ex.getMessage() != null) { | ||||||
|   | |||||||
| @@ -46,7 +46,7 @@ public class DisguiseEntityCommand extends DisguiseBaseCommand implements TabCom | |||||||
|         Disguise disguise; |         Disguise disguise; | ||||||
|  |  | ||||||
|         try { |         try { | ||||||
|             disguise = DisguiseParser.parseDisguise(sender, getPermNode(), DisguiseParser.split(StringUtils.join(args)), getPermissions(sender)); |             disguise = DisguiseParser.parseDisguise(sender, getPermNode(), DisguiseParser.split(StringUtils.join(args, " ")), getPermissions(sender)); | ||||||
|         } |         } | ||||||
|         catch (DisguiseParseException ex) { |         catch (DisguiseParseException ex) { | ||||||
|             if (ex.getMessage() != null) { |             if (ex.getMessage() != null) { | ||||||
|   | |||||||
| @@ -60,7 +60,7 @@ public class DisguiseModifyCommand extends DisguiseBaseCommand implements TabCom | |||||||
|         try { |         try { | ||||||
|             DisguiseParser |             DisguiseParser | ||||||
|                     .callMethods(sender, disguise, getPermissions(sender).get(new DisguisePerm(disguise.getType())), |                     .callMethods(sender, disguise, getPermissions(sender).get(new DisguisePerm(disguise.getType())), | ||||||
|                             new ArrayList<String>(), DisguiseParser.split(StringUtils.join(args))); |                             new ArrayList<String>(), DisguiseParser.split(StringUtils.join(args, " "))); | ||||||
|         } |         } | ||||||
|         catch (DisguiseParseException ex) { |         catch (DisguiseParseException ex) { | ||||||
|             if (ex.getMessage() != null) { |             if (ex.getMessage() != null) { | ||||||
|   | |||||||
| @@ -42,7 +42,7 @@ public class DisguiseModifyEntityCommand extends DisguiseBaseCommand implements | |||||||
|         // TODO Validate if any disguises have this arg |         // TODO Validate if any disguises have this arg | ||||||
|  |  | ||||||
|         LibsDisguises.getInstance().getListener().setDisguiseModify(sender.getName(), DisguiseParser |         LibsDisguises.getInstance().getListener().setDisguiseModify(sender.getName(), DisguiseParser | ||||||
|                 .split(StringUtils.join(args))); |                 .split(StringUtils.join(args, " "))); | ||||||
|  |  | ||||||
|         sender.sendMessage(LibsMsg.DMODIFYENT_CLICK.get(DisguiseConfig.getDisguiseEntityExpire())); |         sender.sendMessage(LibsMsg.DMODIFYENT_CLICK.get(DisguiseConfig.getDisguiseEntityExpire())); | ||||||
|         return true; |         return true; | ||||||
|   | |||||||
| @@ -72,7 +72,7 @@ public class DisguiseModifyPlayerCommand extends DisguiseBaseCommand implements | |||||||
|  |  | ||||||
|         try { |         try { | ||||||
|             DisguiseParser.callMethods(sender, disguise, map.get(new DisguisePerm(disguise.getType())), |             DisguiseParser.callMethods(sender, disguise, map.get(new DisguisePerm(disguise.getType())), | ||||||
|                     new ArrayList<String>(), DisguiseParser.split(StringUtils.join(newArgs))); |                     new ArrayList<String>(), DisguiseParser.split(StringUtils.join(newArgs, " "))); | ||||||
|         } |         } | ||||||
|         catch (DisguiseParseException ex) { |         catch (DisguiseParseException ex) { | ||||||
|             if (ex.getMessage() != null) { |             if (ex.getMessage() != null) { | ||||||
|   | |||||||
| @@ -149,7 +149,7 @@ public class DisguiseModifyRadiusCommand extends DisguiseBaseCommand implements | |||||||
|  |  | ||||||
|             try { |             try { | ||||||
|                 DisguiseParser.callMethods(sender, disguise, map.get(new DisguisePerm(disguise.getType())), |                 DisguiseParser.callMethods(sender, disguise, map.get(new DisguisePerm(disguise.getType())), | ||||||
|                         new ArrayList<String>(), DisguiseParser.split(StringUtils.join(newArgs))); |                         new ArrayList<String>(), DisguiseParser.split(StringUtils.join(newArgs, " "))); | ||||||
|                 modifiedDisguises++; |                 modifiedDisguises++; | ||||||
|             } |             } | ||||||
|             catch (DisguiseParseException ex) { |             catch (DisguiseParseException ex) { | ||||||
|   | |||||||
| @@ -72,7 +72,7 @@ public class DisguisePlayerCommand extends DisguiseBaseCommand implements TabCom | |||||||
|         Disguise disguise; |         Disguise disguise; | ||||||
|  |  | ||||||
|         try { |         try { | ||||||
|             disguise = DisguiseParser.parseDisguise(sender, getPermNode(), DisguiseParser.split(StringUtils.join(newArgs)), map); |             disguise = DisguiseParser.parseDisguise(sender, getPermNode(), DisguiseParser.split(StringUtils.join(newArgs, " ")), map); | ||||||
|         } |         } | ||||||
|         catch (DisguiseParseException ex) { |         catch (DisguiseParseException ex) { | ||||||
|             if (ex.getMessage() != null) { |             if (ex.getMessage() != null) { | ||||||
|   | |||||||
| @@ -130,7 +130,7 @@ public class DisguiseRadiusCommand extends DisguiseBaseCommand implements TabCom | |||||||
|         } |         } | ||||||
|  |  | ||||||
|         try { |         try { | ||||||
|             disguise = DisguiseParser.parseDisguise(sender, getPermNode(), DisguiseParser.split(StringUtils.join(newArgs)), map); |             disguise = DisguiseParser.parseDisguise(sender, getPermNode(), DisguiseParser.split(StringUtils.join(newArgs, " ")), map); | ||||||
|         } |         } | ||||||
|         catch (DisguiseParseException ex) { |         catch (DisguiseParseException ex) { | ||||||
|             if (ex.getMessage() != null) { |             if (ex.getMessage() != null) { | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user