Browse Source

claiming an errant ToL gives ownership to the leader of the guild, not individual player

postwipe-hostile
FatBoy-DOTC 5 months ago
parent
commit
79919121a8
  1. 6
      src/engine/objects/City.java

6
src/engine/objects/City.java

@ -1197,7 +1197,10 @@ public class City extends AbstractWorldObject { @@ -1197,7 +1197,10 @@ public class City extends AbstractWorldObject {
// these assets are autoprotected.
if ((cityBuilding.getBlueprint().getBuildingGroup() == BuildingGroup.TOL) || (cityBuilding.getBlueprint().getBuildingGroup() == BuildingGroup.SPIRE) || (cityBuilding.getBlueprint().getBuildingGroup() == BuildingGroup.BARRACK) || (cityBuilding.getBlueprint().isWallPiece()) || (cityBuilding.getBlueprint().getBuildingGroup() == BuildingGroup.SHRINE)) {
PlayerCharacter guildLeader = PlayerCharacter.getPlayerCharacter(sourcePlayer.guild.getGuildLeaderUUID());
if(guildLeader != null)
cityBuilding.claim(guildLeader);
else
cityBuilding.claim(sourcePlayer);
cityBuilding.setProtectionState(ProtectionState.PROTECTED);
}
@ -1205,6 +1208,7 @@ public class City extends AbstractWorldObject { @@ -1205,6 +1208,7 @@ public class City extends AbstractWorldObject {
this.setForceRename(true);
// Reset city timer for map update
City.lastCityUpdate = System.currentTimeMillis();

Loading…
Cancel
Save