mirror of
https://github.com/danbulant/discord.js
synced 2026-06-10 02:02:40 +00:00
Fix missing space
This commit is contained in:
parent
63b0c8d5cc
commit
3728c71867
1 changed files with 1 additions and 1 deletions
|
|
@ -8,7 +8,7 @@ let Structures;
|
||||||
class DataStore extends Collection {
|
class DataStore extends Collection {
|
||||||
constructor(client, iterable, holds) {
|
constructor(client, iterable, holds) {
|
||||||
super();
|
super();
|
||||||
if(!Structures) Structures = require('../util/Structures');
|
if (!Structures) Structures = require('../util/Structures');
|
||||||
Object.defineProperty(this, 'client', { value: client });
|
Object.defineProperty(this, 'client', { value: client });
|
||||||
Object.defineProperty(this, 'holds', { value: Structures.get(holds) });
|
Object.defineProperty(this, 'holds', { value: Structures.get(holds) });
|
||||||
if (iterable) for (const item of iterable) this.create(item);
|
if (iterable) for (const item of iterable) this.create(item);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue