diff --git a/README.md b/README.md index ca449191..43a6859d 100644 --- a/README.md +++ b/README.md @@ -143,13 +143,6 @@ The `blacklist` option determines whether the blacklist feature is enabled. By d The `blacklisted` option is an array of user usernames or UUIDs, blacklisted played won't be able to use fragBot. By default, this is set to an empty array. -### Guild - -The guild section contains options related to the Hypixel guild. - -The `guildExp` option is a number value required for the `!gexp` command, which is used to check how much more guild experience a user needs to collect to meet the -guild's requirements. By default, this is set to 50,000. - ### API The API options include information about APIs which are being used, the only values which needs to be changed are `hypixelAPIkey` and `imgurAPIkey`. diff --git a/config.example.json b/config.example.json index 2a5caca4..850dba96 100644 --- a/config.example.json +++ b/config.example.json @@ -16,9 +16,6 @@ "blacklist": false, "blacklisted": [] }, - "guild": { - "guildExp": 50000 - }, "API": { "hypixelAPIkey": "HYPIXEL_API_KEY", "imgurAPIkey": "IMGUR_API_KEY" diff --git a/src/discord/commands/infoCommand.js b/src/discord/commands/infoCommand.js index 92446cd4..69d4c8ad 100644 --- a/src/discord/commands/infoCommand.js +++ b/src/discord/commands/infoCommand.js @@ -61,9 +61,7 @@ module.exports = { name: "**Minecraft Information**:", value: `Bot Username: \`${bot.username}\`\nPrefix: \`${config.minecraft.bot.prefix}\`\nSkyBlock Events: \`${ config.minecraft.skyblockEventsNotifications.enabled ? "enabled" : "disabled" - }\`\nAuto Accept: \`${ - config.minecraft.guildRequirements.autoAccept ? "enabled" : "disabled" - }\`\nGuild Experience Requirement: \`${config.minecraft.guild.guildExp.toLocaleString()}\`\nUptime: Online since \nVersion: \`${require("../../../package.json").version}\`\n`, inline: true