diff --git a/WebHostLib/static/assets/player-options.js b/WebHostLib/static/assets/player-options.js index 92cd6c43f3cc..afc72ce54718 100644 --- a/WebHostLib/static/assets/player-options.js +++ b/WebHostLib/static/assets/player-options.js @@ -452,15 +452,15 @@ const exportOptions = () => { const preset = localStorage.getItem(`${gameName}-preset`); switch (preset) { case '__default': - options['description'] = `Generated by https://archipelago.gg with the default preset.`; + options['description'] = `Generated by ${window.location.origin} for ${gameName} with the default preset.`; break; case '__custom': - options['description'] = `Generated by https://archipelago.gg.`; + options['description'] = `Generated by ${window.location.origin} for ${gameName}.`; break; default: - options['description'] = `Generated by https://archipelago.gg with the ${preset} preset.`; + options['description'] = `Generated by ${window.location.origin} for ${gameName} with the ${preset} preset.`; } if (!options.name || options.name.toString().trim().length === 0) {