Merge pull request #32 from Cronick/patch-1

Added server version at startup.
This commit is contained in:
Felix 2016-08-17 18:41:12 +02:00 committed by GitHub
commit 8bec04c8d4

View File

@ -4,7 +4,7 @@ import * as CFG from "../cfg";
export function setup() {
this.print("Booting server..", 33);
this.print(`Booting Server v${require("../package.json").version}...`, 33);
let assetSessionLoaded = false;
@ -33,4 +33,4 @@ export function setup() {
});
});
}
}