temp fix while server is fixing op 8

This commit is contained in:
MathMan05 2024-09-04 11:41:41 -05:00
parent 9aa51d65fd
commit cee146e532
4 changed files with 39 additions and 0 deletions

View file

@ -12,6 +12,7 @@ class Guild extends SnowFlake {
channels;
channelids;
properties;
member_count;
roles;
roleids;
prevchannel;
@ -22,6 +23,7 @@ class Guild extends SnowFlake {
member;
html;
emojis;
large;
static contextmenu = new Contextmenu("guild menu");
static setupcontextmenu() {
Guild.contextmenu.addbutton("Copy Guild id", function () {
@ -78,6 +80,8 @@ class Guild extends SnowFlake {
console.log(json.stickers, ":3");
}
super(json.id);
this.large = json.large;
this.member_count = json.member_count;
this.emojis = json.emojis;
this.owner = owner;
this.headers = this.owner.headers;