Skip to content

Commit

Permalink
- Fix page navigation from list footers in the plotgrouplist and
Browse files Browse the repository at this point in the history
plotlist screens.
    - Closes #7089.
  • Loading branch information
LlmDl committed Nov 14, 2023
1 parent ac12ff5 commit 25b6525
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Towny/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

<artifactId>towny</artifactId>
<packaging>jar</packaging>
<version>0.100.0.4</version>
<version>0.100.0.5</version>

<licenses>
<license>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -739,7 +739,7 @@ public static void sendPlotGroupList(CommandSender sender, Town town, int page,
}

// Page navigation
Component pageFooter = getPageNavigationFooter("towny:town plotgrouplist" + town.getName(), page, "", total, translator);
Component pageFooter = getPageNavigationFooter("towny:town plotgrouplist " + town.getName(), page, "", total, translator);
audience.sendMessage(pageFooter);
}

Expand Down Expand Up @@ -788,7 +788,7 @@ public static void sendPlotList(CommandSender sender, Resident resident, int pag
audience.sendMessage(component);

// Page navigation
Component pageFooter = getPageNavigationFooter("towny:resident plotlist" + resident.getName(), page, "", totalPages, translator);
Component pageFooter = getPageNavigationFooter("towny:resident plotlist " + resident.getName(), page, "", totalPages, translator);
audience.sendMessage(pageFooter);
}

Expand Down
5 changes: 4 additions & 1 deletion Towny/src/main/resources/ChangeLog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9209,4 +9209,7 @@ v0.92.0.11:
- Bump org.junit.jupiter:junit-jupiter-api from 5.10.0 to 5.10.1.
0.100.0.4:
- Fix new TownyObject equals methods using UUIDs, something to undo once the UUID db is adopted.
- Remove two cases of == equality check for residents, courtesy of Warrior with PR #7084.
- Remove two cases of == equality check for residents, courtesy of Warrior with PR #7084.
0.100.0.5:
- Fix page navigation from list footers in the plotgrouplist and plotlist screens.
- Closes #7089.

0 comments on commit 25b6525

Please sign in to comment.