Removed XP system, fixed a few more bugs
This commit is contained in:
parent
29cd75ac3d
commit
903f5eebf0
7 changed files with 5 additions and 67 deletions
|
@ -8,13 +8,6 @@ const guildSchema = new mongoose.Schema({
|
|||
});
|
||||
const Guild = mongoose.model("Guild", guildSchema);
|
||||
|
||||
const xpSchema = new mongoose.Schema({
|
||||
id: String,
|
||||
members: Map,
|
||||
enabled: Boolean
|
||||
});
|
||||
const XP = mongoose.model("XP", xpSchema);
|
||||
|
||||
const tweetSchema = new mongoose.Schema({
|
||||
tweets: [String],
|
||||
replies: [String],
|
||||
|
@ -28,5 +21,4 @@ const tweetSchema = new mongoose.Schema({
|
|||
const TweetCollection = mongoose.model("TweetCollection", tweetSchema);
|
||||
|
||||
exports.guilds = Guild;
|
||||
exports.xp = XP;
|
||||
exports.tweets = TweetCollection;
|
Loading…
Add table
Add a link
Reference in a new issue