forked from MagicBane/Server
Accessor level change
This commit is contained in:
@@ -48,8 +48,8 @@ public class Mine extends AbstractGameObject {
|
|||||||
private float longitude;
|
private float longitude;
|
||||||
private float altitude;
|
private float altitude;
|
||||||
private Guild owningGuild;
|
private Guild owningGuild;
|
||||||
private PlayerCharacter lastClaimer;
|
public PlayerCharacter lastClaimer;
|
||||||
private SessionID lastClaimerSessionID;
|
public SessionID lastClaimerSessionID;
|
||||||
|
|
||||||
private int flags;
|
private int flags;
|
||||||
private int buildingID;
|
private int buildingID;
|
||||||
@@ -488,11 +488,13 @@ public class Mine extends AbstractGameObject {
|
|||||||
|
|
||||||
// This mine does not have a valid claimer
|
// This mine does not have a valid claimer
|
||||||
// we will therefore set it to errant
|
// we will therefore set it to errant
|
||||||
|
// and keep the window open.
|
||||||
|
|
||||||
if (!validClaimer(this.lastClaimer)) {
|
if (!validClaimer(this.lastClaimer)) {
|
||||||
this.lastClaimerSessionID = null;
|
this.lastClaimerSessionID = null;
|
||||||
this.lastClaimer = null;
|
this.lastClaimer = null;
|
||||||
this.updateGuildOwner(null);
|
this.updateGuildOwner(null);
|
||||||
|
this.setActive(true);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user