Dropped unused ghost mode.

Contributed by Sahar.
This commit is contained in:
MobiusDev
2018-06-08 15:06:47 +00:00
parent b76cccdcde
commit 5375129879
3 changed files with 0 additions and 38 deletions

View File

@ -32,9 +32,6 @@ public class PcAppearance
private boolean _sex; // Female true(1)
/** true if the player is invisible */
private boolean _ghostmode = false;
/** The current visible name of this player, not necessarily the real one */
private String _visibleName;
@ -142,16 +139,6 @@ public class PcAppearance
_sex = isfemale;
}
public void setGhostMode(boolean b)
{
_ghostmode = b;
}
public boolean isGhost()
{
return _ghostmode;
}
public int getNameColor()
{
return _nameColor;