Implement exiting teapot

This commit is contained in:
NotThorny
2023-01-27 20:18:07 -07:00
parent 9aecc904f6
commit 01d1b356f7
6 changed files with 1095 additions and 0 deletions

View File

@@ -97,6 +97,7 @@ public class Player {
@Getter private int headImage;
@Getter private int nameCardId = 210001;
@Getter private Position position;
@Getter @Setter private Position prevPos;
@Getter private Position rotation;
@Getter private PlayerBirthday birthday;
@Getter private PlayerCodex codex;
@@ -208,6 +209,7 @@ public class Player {
this.questManager = new QuestManager(this);
this.buffManager = new PlayerBuffManager(this);
this.position = new Position(GameConstants.START_POSITION);
this.prevPos = new Position();
this.rotation = new Position(0, 307, 0);
this.sceneId = 3;
this.regionId = 1;