mirror of
https://github.com/tiramisulabs/seyfert.git
synced 2025-07-01 20:46:08 +00:00
fix: id truco (#241)
This commit is contained in:
parent
be10b9bfe6
commit
a4574c51ae
@ -51,7 +51,7 @@ export class BaseGuildMember extends DiscordBase {
|
||||
}
|
||||
|
||||
guild(force = false) {
|
||||
return this.client.guilds.fetch(this.id, force);
|
||||
return this.client.guilds.fetch(this.guildId, force);
|
||||
}
|
||||
|
||||
fetch(force = false) {
|
||||
|
@ -18,7 +18,7 @@ export class Sticker extends DiscordBase {
|
||||
|
||||
async guild(force = false) {
|
||||
if (!this.guildId) return;
|
||||
return this.client.guilds.fetch(this.id, force);
|
||||
return this.client.guilds.fetch(this.guildId, force);
|
||||
}
|
||||
|
||||
async edit(body: RESTPatchAPIGuildStickerJSONBody, reason?: string) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user