Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`.
Expand Down
3 changes: 0 additions & 3 deletions config.example.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@
"blacklist": false,
"blacklisted": []
},
"guild": {
"guildExp": 50000
},
"API": {
"hypixelAPIkey": "HYPIXEL_API_KEY",
"imgurAPIkey": "IMGUR_API_KEY"
Expand Down
4 changes: 1 addition & 3 deletions src/discord/commands/infoCommand.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 <t:${Math.floor(
}\`\nAuto Accept: \`${config.minecraft.guildRequirements.autoAccept ? "enabled" : "disabled"}\`\nUptime: Online since <t:${Math.floor(
(Date.now() - client.uptime) / 1000
)}:R>\nVersion: \`${require("../../../package.json").version}\`\n`,
inline: true
Expand Down
Loading