From 5d9dd82a7d9be30c21efd2c09f1a46d9b2206fdd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20V=C3=B6gele?= Date: Tue, 27 Apr 2021 07:48:40 +0200 Subject: [PATCH] Create system field in constructor --- src/socketlib.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/socketlib.js b/src/socketlib.js index faf8fe0..570915b 100644 --- a/src/socketlib.js +++ b/src/socketlib.js @@ -23,6 +23,7 @@ Hooks.once("init", () => { class Socketlib { constructor() { this.modules = new Map(); + this.system = undefined; this.errors = errors; }