Skip to content

Commit

Permalink
Merge branch 'master' into backport/0.96.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Suneet Tipirneni (Siris) committed Jan 31, 2020
2 parents 417168e + e24129c commit 24002eb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions resources/ChangeLog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4124,10 +4124,12 @@ v0.92.0.11:
- Allows the use of the /ta nation new {name} {capital} command.
- Pom updates for javadocs courtesy of FlagCourier with PR #3672.
- Eco backend refactor courtesy of Siris with PR #3663.

0.95.2.14:
- Fix for revoking town invites on a player not actually revoking the invite.

0.96.0.0:
- Special 'Testing' Release for 1.13.2 Servers preceding 0.96.0.0
- Some "Required Config Changes" will not be necessary for this release.
- Reverted ProtectionRegenTask class to previous version found in 1.13 branch (API Incompatibility)
- This may result in run-time bugs! I am not familiar with this class, or the methods that call it.
- Changed to full-path import for ActionType in TownyPlayerListener.
- Changed to full-path import for ActionType in TownyPlayerListener.
2 changes: 1 addition & 1 deletion src/com/palmergames/bukkit/towny/command/TownCommand.java
Original file line number Diff line number Diff line change
Expand Up @@ -2760,7 +2760,7 @@ public static void townAdd(Object sender, Town specifiedTown, String[] names) th
String[] namestoremove = removeinvites.toArray(new String[0]);
if (namestoremove.length != 0) {
List<Resident> toRevoke = getValidatedResidentsForInviteRevoke(sender, namestoremove, town);
if (toRevoke.isEmpty())
if (!toRevoke.isEmpty())
townRevokeInviteResident(sender,town, toRevoke);
}

Expand Down

0 comments on commit 24002eb

Please sign in to comment.