From 1e8eb2a45fd1f3c08f65d853b726ad697018a8c7 Mon Sep 17 00:00:00 2001 From: Kyle <41976328+ImKyle4815@users.noreply.github.com> Date: Thu, 4 Feb 2021 13:56:28 -0800 Subject: [PATCH] Update creator-8.js --- js/creator-8.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/creator-8.js b/js/creator-8.js index f0556f7d..d111e59e 100644 --- a/js/creator-8.js +++ b/js/creator-8.js @@ -1372,7 +1372,7 @@ async function imageLocal(event, destination, otherParams) { function loadScript(scriptPath) { var script = document.createElement('script'); script.setAttribute('type', 'text/javascript'); - script.onerror = function(){notify('An error occured when trying to load a script, please try reloading the page. Sorry for the inconvenience.');} + script.onerror = function(){notify('A script failed to load, likely due to an update. Please reload your page. Sorry for the inconvenience.');} script.setAttribute('src', scriptPath); if (typeof script != 'undefined') { document.querySelectorAll('head')[0].appendChild(script);