bug fixes

This commit is contained in:
MathMan05 2024-09-02 17:11:30 -05:00
parent e79e4affb4
commit 7d5a0d0b65
4 changed files with 4 additions and 4 deletions

View file

@ -558,7 +558,7 @@ class Channel {
body: JSON.stringify({
name,
type,
parent_id: this.snowflake,
parent_id: this.id,
permission_overwrites: [],
})
});

View file

@ -514,7 +514,7 @@ class Guild {
this.printServers();
}
createChannel(name, type) {
fetch(this.info.api + "/guilds/" + this.snowflake + "/channels", {
fetch(this.info.api + "/guilds/" + this.id + "/channels", {
method: "POST",
headers: this.headers,
body: JSON.stringify({ name, type })