1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-08-17 12:01:20 +02:00

Merge pull request #88 from SyntaxBlitz/master

Fix /vanish with no arguments doing nothing
This commit is contained in:
md-5
2012-06-21 04:31:18 -07:00

View File

@@ -669,6 +669,7 @@ public class User extends UserData implements Comparable<User>, IReplyTo, IUser
public void toggleVanished() public void toggleVanished()
{ {
final boolean set = !vanished; final boolean set = !vanished;
this.setVanished(set);
} }
public boolean checkSignThrottle() { public boolean checkSignThrottle() {