diff --git a/src/handler/sern.ts b/src/handler/sern.ts index 587443c..77ee6b8 100644 --- a/src/handler/sern.ts +++ b/src/handler/sern.ts @@ -45,7 +45,7 @@ export class Handler { .on('ready', async () => { Files.buildData(this) .then(data => this.registerModules(data)); - if (wrapper.init !== undefined) wrapper.init(this); + wrapper.init?.(this); new Logger().tableRam(); })