Skip to content

Commit

Permalink
RC 2
Browse files Browse the repository at this point in the history
* Fixed #61
* Fixed #62
  • Loading branch information
ezeiger92 committed Nov 27, 2017
1 parent 565d750 commit 84cf536
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 13 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>me.mrcookieslime</groupId>
<artifactId>QuestWorld</artifactId>
<version>2.6.9</version>
<version>2.6.9.1</version>
<build>
<resources>
<resource>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -555,7 +555,7 @@ public static void openEditor(Player p) {
int j = 1;
for(IQuest q : category.getQuests()) {
if(j > 5) {
lines[j++] = "&7&oand " + (quests - j) + " more...";
lines[j++] = "&7&oand " + (quests - 5) + " more...";
break;
}
lines[j++] = "&7- " + q.getName();
Expand Down Expand Up @@ -613,7 +613,7 @@ public static void openCategoryQuestEditor(Player p, final ICategory category) {
int j = 1;
for(IMission m : quest.getMissions()) {
if(j > 5) {
lines[j++] = "&7&oand " + (missions - j) + " more...";
lines[j++] = "&7&oand " + (missions - 5) + " more...";
break;
}
lines[j++] = "&7- " + m.getText();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public UUID getPartyLeader() {
}

public void setPartyLeader(UUID uuid) {
config.set("party.associated", uuid);
config.set("party.associated", uuid.toString());
}

public List<UUID> getPartyMembers() {
Expand Down
9 changes: 0 additions & 9 deletions src/main/java/me/mrCookieSlime/QuestWorld/party/Party.java
Original file line number Diff line number Diff line change
Expand Up @@ -132,16 +132,7 @@ public int getSize() {
}

public void save() {
List<String> list = new ArrayList<String>();
for (UUID member: members) {
list.add(member.toString());
}
manager.getTracker().setPartyMembers(members);

List<String> invitations = new ArrayList<String>();
for (UUID p: pending) {
invitations.add(p.toString());
}
manager.getTracker().setPartyPending(pending);
}

Expand Down

0 comments on commit 84cf536

Please sign in to comment.