1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-09-01 10:42:41 +02:00

Fix /vanish with no arguments doing nothing

This commit is contained in:
Timothy Aveni
2012-06-21 06:17:26 -04:00
parent 51f7f6807a
commit 49400f0ac3

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() {