1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-09-25 13:49:12 +02:00

Missing user methods

This commit is contained in:
ementalo
2012-06-21 19:35:48 +01:00
parent bfbec1c46c
commit 7ce9e42f35

View File

@@ -742,6 +742,7 @@ public class User extends UserBase implements IUser
} }
@Override
public void setVanished(boolean set) public void setVanished(boolean set)
{ {
vanished = set; vanished = set;
@@ -767,4 +768,18 @@ public class User extends UserBase implements IUser
ess.getVanishedPlayers().remove(getName()); ess.getVanishedPlayers().remove(getName());
} }
} }
@Override
public void setName(String name)
{
//todo
//throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public void toggleVanished()
{
//todo
//throw new UnsupportedOperationException("Not supported yet.");
}
} }