Fix guild.owner

This commit is contained in:
Samuel Elliott 2018-04-15 00:54:33 +01:00
parent ad710de008
commit 96952c3fef
No known key found for this signature in database
GPG Key ID: 8420C7CDE43DC4D6
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ export class Guild {
get features() { return this.discordObject.features }
get owner() {
return this.members.find(m => m.id === this.owner_id);
return this.members.find(m => m.user_id === this.owner_id);
}
get roles() {