Set owner to null when invalid claim occurs.

This commit is contained in:
2023-01-19 14:15:43 -05:00
parent 78cdb6967a
commit 11e5439e1d
+1
View File
@@ -488,6 +488,7 @@ public class Mine extends AbstractGameObject {
if (!validClaimer(this.lastClaimer)) {
this.lastClaimerSessionID = null;
this.lastClaimer = null;
this.updateGuildOwner(null);
return false;
}