From ceb4f981ad22674768e5455b03def286e23164bf Mon Sep 17 00:00:00 2001 From: "Laetitia (O-01-67)" <68935009+O-01-67@users.noreply.github.com> Date: Thu, 24 Nov 2022 13:31:53 -0500 Subject: [PATCH] change modded save warning alert text --- mods/save_loading.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mods/save_loading.js b/mods/save_loading.js index 6bbeb016..b31c28c2 100644 --- a/mods/save_loading.js +++ b/mods/save_loading.js @@ -161,7 +161,7 @@ function importJsonState(json) { }; localStorage.setItem("enabledMods",JSON.stringify(currentEnmods)); if((enMods.length > 0 && enMods[0] !== modName) || enMods.length > 1) { - alert("Saves with other mods might require a reload (and then importing the save file again)."); + alert("Saves with other mods might require a reload (and then importing the save file again).\nIf you see a blank screen, try refreshing and loading the file again before you panic."); }; //} @@ -229,4 +229,4 @@ elements.save_loader = { excludeRandom: true, color: "#FFFFFF", desc: saveLoaderDescription, -} +};