Rename NOT_LOGGED_IN -> LOGGED_OUT

This commit is contained in:
P0nk
2024-09-29 09:15:01 +02:00
parent a580e44bc9
commit 4e1aa1eb1a
5 changed files with 13 additions and 13 deletions

View File

@@ -179,11 +179,11 @@ public class TransitionService {
if (!c.isInTransition() && c.isLoggedIn()) {
c.updateLoginState(LoginState.NOT_LOGGED_IN);
c.updateLoginState(LoginState.LOGGED_OUT);
c.clear();
} else {
if (!Server.getInstance().hasCharacteridInTransition(c)) {
c.updateLoginState(LoginState.NOT_LOGGED_IN);
c.updateLoginState(LoginState.LOGGED_OUT);
}
c.clearEngines();