From 3728c718670d2e4f6002063eeec094b6f06b55a6 Mon Sep 17 00:00:00 2001 From: Schuyler Cebulskie Date: Mon, 20 Nov 2017 00:24:43 -0500 Subject: [PATCH] Fix missing space --- src/stores/DataStore.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stores/DataStore.js b/src/stores/DataStore.js index 3c58b3899..1a196e77d 100644 --- a/src/stores/DataStore.js +++ b/src/stores/DataStore.js @@ -8,7 +8,7 @@ let Structures; class DataStore extends Collection { constructor(client, iterable, holds) { super(); - if(!Structures) Structures = require('../util/Structures'); + if (!Structures) Structures = require('../util/Structures'); Object.defineProperty(this, 'client', { value: client }); Object.defineProperty(this, 'holds', { value: Structures.get(holds) }); if (iterable) for (const item of iterable) this.create(item);