Amend giving quest names with spaces, fixes #62

This commit is contained in:
HappyPikachu 2015-04-02 00:41:31 -04:00
parent 7123f29981
commit 380a299dd5

View File

@ -1088,39 +1088,22 @@ public class Quests extends JavaPlugin implements ConversationAbandonedListener,
Quest questToGive; Quest questToGive;
String name = null; String name = "";
if (args.length == 3) { if (args.length == 3) {
name = args[2].toLowerCase(); name = args[2].toLowerCase();
} else { } else {
boolean first = true; for (int i = 2; i < args.length; i++) {
int lastIndex = (args.length - 1);
int index = 0;
for (String s : args) { int lastIndex = args.length - 1;
if (index != 0) {
if (first) {
first = false;
if (args.length > 2) {
name = s.toLowerCase() + " ";
} else {
name = s.toLowerCase();
}
} else if (index == lastIndex) {
name = name + s.toLowerCase();
} else {
name = name + s.toLowerCase() + " ";
}
if (i == lastIndex) {
name = name + args[i].toLowerCase();
} else {
name = name + args[i].toLowerCase() + " ";
} }
index++;
} }
} }