More caching stuff, changed info command a bit

This commit is contained in:
TheEssem 2020-12-18 14:46:59 -06:00
parent ef945adf09
commit 873b3f59bc
3 changed files with 18 additions and 8 deletions

View file

@ -24,14 +24,14 @@ exports.run = async () => {
}, },
{ {
"name": "✅ Official Server:", "name": "✅ Official Server:",
"value": "[Click here!](https://discord.gg/vfFM7YT)" "value": "[Click here!](https://projectlounge.pw/support)"
}, },
{ {
"name": "💻 Source Code:", "name": "💻 Source Code:",
"value": "[Click here!](https://github.com/esmBot/esmBot)" "value": "[Click here!](https://github.com/esmBot/esmBot)"
}, },
{ {
"name": "<:twitter:652550515372064768> Twitter:", "name": "🐦 Twitter:",
"value": "[Click here!](https://twitter.com/esmBot_)" "value": "[Click here!](https://twitter.com/esmBot_)"
} }
] ]

View file

@ -14,7 +14,7 @@
"absolutely nothing", "absolutely nothing",
"Mozilla Firefox", "Mozilla Firefox",
"Google Chrome", "Google Chrome",
"music bot soon I guess", "music bot now I guess",
"Fortnut", "Fortnut",
"epic mashups bro", "epic mashups bro",
"Netscape Navigator", "Netscape Navigator",
@ -107,11 +107,9 @@
"with chimps", "with chimps",
"with the TF2 source code", "with the TF2 source code",
"alvin the chipmunk nightcore", "alvin the chipmunk nightcore",
"braaaaap",
"Schmelf?",
"Troll", "Troll",
"ay yo the pizza here", "ay yo the pizza here",
"100 gecs", "100 gecs",
"with limited resources", "with limited resources",
"free bjs at papa johns" "messages from 2018"
] ]

View file

@ -2,5 +2,17 @@ exports.commands = new Map();
exports.aliases = new Map(); exports.aliases = new Map();
exports.info = new Map(); exports.info = new Map();
exports.prefixCache = new Map(); class Cache extends Map {
exports.disabledCache = new Map(); constructor(values) {
super(values);
this.maxValues = 1024;
}
set(key, value) {
super.set(key, value);
if (this.size > this.maxValues) this.delete(this.keys().next().value);
}
}
exports.prefixCache = new Cache();
exports.disabledCache = new Cache();