Realm count updated properly.

This commit is contained in:
2026-07-26 16:38:01 -04:00
parent 4a217d1a6b
commit 46045895d7
5 changed files with 19 additions and 23 deletions
+2 -2
View File
@@ -314,7 +314,7 @@ public class InfoCmd extends AbstractDevCmd {
output += newline;
output += "State: " + targetPC.getGuild().guildState;
output += newline;
output += "Realms Owned:" + targetPC.getGuild().getRealmsOwned();
output += "Realms Owned:" + targetPC.getGuild().realmsOwned;
output += newline;
output += "====Nation====";
output += newline;
@@ -322,7 +322,7 @@ public class InfoCmd extends AbstractDevCmd {
output += newline;
output += "Nation State: " + targetPC.getGuild().getNation().guildState;
output += newline;
output += "Realms Owned:" + targetPC.getGuild().getNation().getRealmsOwned();
output += "Realms Owned:" + targetPC.getGuild().getNation().realmsOwned;
output += newline;
output += "Guild Rank:" + (GuildStatusController.getRank(targetPC.getGuildStatus()) + targetPC.getGuild().getRealmsOwnedFlag());
}