diff --git a/server/game2006service/tasks/fragment.js b/server/game2006service/tasks/fragment.js index ae24e1dd..b21865f9 100644 --- a/server/game2006service/tasks/fragment.js +++ b/server/game2006service/tasks/fragment.js @@ -29,6 +29,7 @@ class Fragment { const isAlloced = await this.isAlloced(conn, daySeconds, nowTime, hourSeconds); if (!isAlloced) { const allocedFragments = await this.fetchAllocedFragments(conn, daySeconds, nowTime); + await this.realloc(conn, daySeconds, nowTime, allowedVersions); } } } catch (err) { @@ -87,6 +88,9 @@ class Fragment { return allocedFragments; } + async realloc(conn, daySeconds, nowTime, hourSeconds, allocedFragments) { + } + } function init() {