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
commit b70f950479

View File

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