mirror of
https://github.com/tiramisulabs/seyfert.git
synced 2025-07-04 14:06:07 +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) {
|
guild(force = false) {
|
||||||
return this.client.guilds.fetch(this.id, force);
|
return this.client.guilds.fetch(this.guildId, force);
|
||||||
}
|
}
|
||||||
|
|
||||||
fetch(force = false) {
|
fetch(force = false) {
|
||||||
|
@ -18,7 +18,7 @@ export class Sticker extends DiscordBase {
|
|||||||
|
|
||||||
async guild(force = false) {
|
async guild(force = false) {
|
||||||
if (!this.guildId) return;
|
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) {
|
async edit(body: RESTPatchAPIGuildStickerJSONBody, reason?: string) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user