This commit is contained in:
Expand 2023-12-17 04:49:11 +11:00
parent bcf83fe68f
commit cbbb1bab06

View file

@ -36,7 +36,7 @@ module.exports = {
channelSend("Server back online!") channelSend("Server back online!")
} }
restarted = 0; restarted = 0;
}).catch((error) => { }).catch(async (error) => {
console.log("Server is offline" + error); console.log("Server is offline" + error);
serverofflinefor += 10 serverofflinefor += 10
if(serverofflinefor <= 60){ if(serverofflinefor <= 60){
@ -44,8 +44,8 @@ module.exports = {
} }
if(serverofflinefor == 60 && restarted != 1){ if(serverofflinefor == 60 && restarted != 1){
channelSend(`server Offline for 60 seconds Restarting`) channelSend(`server Offline for 60 seconds Restarting`)
const killer = spawn("screen", ['-XS', 'minecraft', 'quit']) const killer = await spawn("screen", ['-XS', 'minecraft', 'quit'])
const mc = spawn("screen", ['-dmS', 'minecraft', '/bin/bash', `${process.env.SERSTARTLOC}/ServerStart.sh`], { const mc = await spawn("screen", ['-dmS', 'minecraft', '/bin/bash', `${process.env.SERSTARTLOC}/ServerStart.sh`], {
cwd: `${process.env.SERSTARTLOC}` cwd: `${process.env.SERSTARTLOC}`
}) })
restarted = 1 restarted = 1