Signature update

This commit is contained in:
2024-06-19 16:56:06 -04:00
parent 56564f1c3b
commit 4a7013de61
3 changed files with 3 additions and 4 deletions
+1 -2
View File
@@ -286,7 +286,7 @@ public class City extends AbstractWorldObject {
return city.getBindLoc();
}
public static ArrayList<City> getCitiesToTeleportTo(PlayerCharacter playerCharacter) {
public static ArrayList<City> getCitiesToTeleportTo(PlayerCharacter playerCharacter, boolean repledge) {
ArrayList<City> cities = new ArrayList<>();
@@ -307,7 +307,6 @@ public class City extends AbstractWorldObject {
if (city.parentZone == null)
continue;
;
if (city.parentZone.guild_zone && city.isOpen() && city.getTOL().rank > 4 && city.getGuild().charter.equals(playerCharacter.guild.charter)) {