Began to work on status setting

This commit is contained in:
hydrabolt
2015-09-26 21:53:23 +01:00
parent 8943a2fffc
commit 7f5050f979
2 changed files with 25 additions and 0 deletions

View File

@@ -1382,6 +1382,18 @@ class Client {
});
});
}
setStatusIdle(){
this.setStatus("idle");
}
setStatusOnline(){
this.setStatus("online");
}
setStatus(){
}
}
module.exports = Client;