Inlines method. upgraded protection

This commit is contained in:
2026-05-10 10:36:27 -04:00
parent d014aafe45
commit 09c9dfbc06
15 changed files with 36 additions and 43 deletions
@@ -81,7 +81,7 @@ public class AcceptSubInviteHandler extends AbstractClientMsgHandler {
//all tests passed, let's Handle code
//Update Target Guild State.
swornGuild.setGuildState(GuildState.Petitioner);
swornGuild.guildState = GuildState.Petitioner;
//Add sub so GuildMaster can Swear in.
@@ -91,7 +91,7 @@ public class AcceptSubInviteHandler extends AbstractClientMsgHandler {
//Let's send the message back.
msg.setUnknown02(1);
msg.setResponse("Your guild is now a " + swornGuild.getGuildState().name() + '.');
msg.setResponse("Your guild is now a " + swornGuild.guildState.name() + '.');
dispatch = Dispatch.borrow(sourcePlayer, msg);
DispatchManager.dispatchMsgDispatch(dispatch, mbEnums.DispatchChannel.SECONDARY);
return true;