1
0
mirror of https://github.com/plexusorg/Plex-FAWE.git synced 2025-04-17 04:43:03 +00:00

Correct handling of arguments where the arg is a quotation character followed by a space. Fixes WORLDEDIT-2633

This commit is contained in:
zml2008 2013-01-26 15:26:25 -08:00 committed by Wizjany
parent 9bb7968358
commit b48c735d2e

@ -79,7 +79,7 @@ public class CommandContext {
int endIndex;
for (endIndex = i; endIndex < args.length; ++endIndex) {
final String arg2 = args[endIndex];
if (arg2.charAt(arg2.length() - 1) == quotedChar) {
if (arg2.charAt(arg2.length() - 1) == quotedChar && arg2.length() > 1) {
if (endIndex != i) build.append(' ');
build.append(arg2.substring(endIndex == i ? 1 : 0, arg2.length() - 1));
break;