Created an empty shell of a server

This commit is contained in:
2018-10-28 23:15:40 +11:00
parent ba4316ef3d
commit 729209288d
17 changed files with 299 additions and 185 deletions

View File

@@ -60,7 +60,7 @@ client.on('ready', async () => {
console.log("Logged in as: " + client.user.username + " - " + client.user.id);
//ADAM updates stamina (1) and health by 1% every 2 min.
cron.schedule('*/2 * * * *', () => {
cron.schedule('*/2 * * * *', () => { //TODO: move this to Mori
console.log('Updating STAMINA every 2 min.');
shared.SendServerData("updateStamina");
});