Added function for calculating guild exp

This commit is contained in:
2023-11-16 00:38:11 +01:00
parent 325d310de5
commit b45fc07614
2 changed files with 55 additions and 1 deletions

View File

@@ -1,5 +1,11 @@
const { skywarsLevel } = require('./functions/skywars.js')
const { bedwarsLevel } = require('./functions/bedwars.js')
const { hypixelLevel } = require('./functions/hypixel.js')
const { guildLevel } = require('./functions/guild.js')
module.exports = { skywarsLevel, bedwarsLevel, hypixelLevel }
module.exports = {
skywarsLevel,
bedwarsLevel,
hypixelLevel,
guildLevel
}