Skip to content

Commit bb7e676

Browse files
committed
Remove guildExp value that isn't used anywhere
1 parent 0fe98e1 commit bb7e676

File tree

3 files changed

+1
-13
lines changed

3 files changed

+1
-13
lines changed

README.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -143,13 +143,6 @@ The `blacklist` option determines whether the blacklist feature is enabled. By d
143143

144144
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.
145145

146-
### Guild
147-
148-
The guild section contains options related to the Hypixel guild.
149-
150-
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
151-
guild's requirements. By default, this is set to 50,000.
152-
153146
### API
154147

155148
The API options include information about APIs which are being used, the only values which needs to be changed are `hypixelAPIkey` and `imgurAPIkey`.

config.example.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@
1616
"blacklist": false,
1717
"blacklisted": []
1818
},
19-
"guild": {
20-
"guildExp": 50000
21-
},
2219
"API": {
2320
"hypixelAPIkey": "HYPIXEL_API_KEY",
2421
"imgurAPIkey": "IMGUR_API_KEY"

src/discord/commands/infoCommand.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,7 @@ module.exports = {
6161
name: "**Minecraft Information**:",
6262
value: `Bot Username: \`${bot.username}\`\nPrefix: \`${config.minecraft.bot.prefix}\`\nSkyBlock Events: \`${
6363
config.minecraft.skyblockEventsNotifications.enabled ? "enabled" : "disabled"
64-
}\`\nAuto Accept: \`${
65-
config.minecraft.guildRequirements.autoAccept ? "enabled" : "disabled"
66-
}\`\nGuild Experience Requirement: \`${config.minecraft.guild.guildExp.toLocaleString()}\`\nUptime: Online since <t:${Math.floor(
64+
}\`\nAuto Accept: \`${config.minecraft.guildRequirements.autoAccept ? "enabled" : "disabled"}\`\nUptime: Online since <t:${Math.floor(
6765
(Date.now() - client.uptime) / 1000
6866
)}:R>\nVersion: \`${require("../../../package.json").version}\`\n`,
6967
inline: true

0 commit comments

Comments
 (0)