Logging changes (move levels down & add toString for some objects)

This commit is contained in:
KingRainbow44
2023-08-30 23:28:54 -04:00
parent aad4529b0e
commit 67c0e82dfb
5 changed files with 29 additions and 9 deletions

View File

@@ -1545,6 +1545,12 @@ public class Player implements PlayerHook, FieldFetch {
this.id == otherPlayer.getUid();
}
@Override
public String toString() {
return "Player UID: %s; Nickname: %s; Account: %s"
.formatted(this.id, this.nickname, this.account);
}
public enum SceneLoadState {
NONE(0), LOADING(1), INIT(2), LOADED(3);