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

@@ -4,7 +4,7 @@ package client;
* @author Ponk
*/
public class LoginState {
public static final byte NOT_LOGGED_IN = 0; // TODO: rename to LOGGED_OUT
public static final byte LOGGED_OUT = 0;
public static final byte SERVER_TRANSITION = 1;
public static final byte LOGGED_IN = 2;
}