We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d98225 commit c687137Copy full SHA for c687137
src/Interface/Lists/DiscordsCom.ts
@@ -4,7 +4,7 @@ import { Query } from '../../Utils/Constants'
4
5
/**
6
* Represents the Discords.com service (formerly Bots For Discord).
7
- * @see https://docs.botsfordiscord.com/
+ * @see https://docs.discords.com/
8
*/
9
export default class DiscordsCom extends Service {
10
/** The values that can be used to select the service. */
@@ -41,7 +41,7 @@ export default class DiscordsCom extends Service {
41
const { token, clientID, serverCount } = options
42
return super._post({
43
method: 'post',
44
- url: `/bot/${Util.resolveID(clientID)}`,
+ url: `/bot/${Util.resolveID(clientID)}/setservers`,
45
headers: { Authorization: token },
46
data: { server_count: Util.resolveCount(serverCount) }
47
})
0 commit comments