Variable hidden elevated to abschar.

This commit is contained in:
2023-09-02 15:57:23 -04:00
parent d409ef49af
commit 71eeb3f6b8
6 changed files with 11 additions and 13 deletions
-5
View File
@@ -135,7 +135,6 @@ public class PlayerCharacter extends AbstractCharacter {
private Vector3fImmutable lastStaticLoc = new Vector3fImmutable(0.0f, 0.0f, 0.0f);
private GameObjectType lastTargetType;
private int lastTargetID;
private int hidden = 0; // current rank of hide/sneak/invis
private int seeInvis = 0; // current rank of see invis
private float speedMod;
private boolean teleportMode = false; // Teleport on MoveToPoint
@@ -2774,10 +2773,6 @@ public class PlayerCharacter extends AbstractCharacter {
this.lastStaticLoc = value;
}
public int getHidden() {
return this.hidden;
}
public void setHidden(int value) {
this.hidden = value;
}