Create system field in constructor

This commit is contained in:
2021-04-27 07:48:40 +02:00
parent 6a70df04e7
commit 5d9dd82a7d

View File

@@ -23,6 +23,7 @@ Hooks.once("init", () => {
class Socketlib { class Socketlib {
constructor() { constructor() {
this.modules = new Map(); this.modules = new Map();
this.system = undefined;
this.errors = errors; this.errors = errors;
} }