From 57d3a05edc45defe33a1946a5f937dfd35b10a96 Mon Sep 17 00:00:00 2001 From: DevLarge Date: Wed, 6 Jan 2021 17:29:15 +0100 Subject: [PATCH] Update landing.js --- app/assets/js/scripts/landing.js | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/app/assets/js/scripts/landing.js b/app/assets/js/scripts/landing.js index 0b7c6d27..3897b362 100644 --- a/app/assets/js/scripts/landing.js +++ b/app/assets/js/scripts/landing.js @@ -81,10 +81,7 @@ function setDownloadPercentage(value, max, percent = ((value/max)*100)){ */ function setLaunchEnabled(val){ document.getElementById('launch_button').disabled = !val - if (clientInformation.shutdownRPC) { - loggerLanding.log('Large comment: ShutdownRPC') - } - if (clientInformation.onGameClose == true) { + if (clientInformation.onGameClose) { loggerLanding.log('Large comment: Game Closed') } } @@ -694,7 +691,7 @@ function dlAsync(login = true){ if(SERVER_JOINED_REGEX.test(data)){ DiscordWrapper.updateDetails('Exploring the Realm!') } else if(GAME_JOINED_REGEX.test(data)){ - DiscordWrapper.updateDetails('Sailing to Westeros!') + DiscordWrapper.updateDetails('Exploring Stellar!') } }