Fixes #71, issue with history

This commit is contained in:
neauoire
2020-03-26 20:35:30 +09:00
parent ab540c0f74
commit c7912e02fe
4 changed files with 16 additions and 16 deletions

View File

@@ -6,7 +6,6 @@ function Acels (client) {
this.order = []
this.all = {}
this.roles = {}
this.pipe = null
this.install = (host = document.body) => {
@@ -40,10 +39,6 @@ function Acels (client) {
this.all[accelerator] = { cat, name, downfn, upfn, accelerator }
}
this.add = (cat, role) => {
this.all[':' + role] = { cat, name: role, role }
}
this.get = (accelerator) => {
return this.all[accelerator]
}