From 7cb5b22ebb80e839a2effafac91106966edef462 Mon Sep 17 00:00:00 2001 From: Programmix Date: Sat, 14 Jan 2017 17:03:26 -0800 Subject: [PATCH] @Gawdl3y dun goofed (#1099) --- src/structures/Guild.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/structures/Guild.js b/src/structures/Guild.js index 26ec4273c..fef675a0a 100644 --- a/src/structures/Guild.js +++ b/src/structures/Guild.js @@ -344,7 +344,7 @@ class Guild { */ fetchMembers(query = '') { return new Promise((resolve, reject) => { - if (this._fetchWaiter) throw new Error('Already fetching guild members in ${this.id}.'); + if (this._fetchWaiter) throw new Error(`Already fetching guild members in ${this.id}.`); if (this.memberCount === this.members.size) { resolve(this); return;