From 98d099c036b11973a159bf928f686d2f4e8d8f1c Mon Sep 17 00:00:00 2001 From: NinjaPikachuska <89906909+NinjaPikachuska@users.noreply.github.com> Date: Sat, 11 Jan 2025 02:54:27 +0300 Subject: [PATCH] fix (#13714) --- nano/js/nano_utility.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nano/js/nano_utility.js b/nano/js/nano_utility.js index 8b604be6085d..8715ceb3f358 100644 --- a/nano/js/nano_utility.js +++ b/nano/js/nano_utility.js @@ -38,7 +38,7 @@ var NanoUtility = function () queryString += key + '=' + parameters[key]; } } - return queryString; + return 'byond://' + queryString; } } } (); @@ -48,7 +48,7 @@ if (typeof jQuery == 'undefined') { } if (typeof doT == 'undefined') { alert('ERROR: Template engine failed to load!'); -} +} // All scripts are initialised here, this allows control of init order $(document).ready(function () { @@ -158,4 +158,4 @@ if (!String.prototype.ckey) { String.prototype.ckey = function () { return this.replace(/\W/g, '').toLowerCase(); }; -} \ No newline at end of file +}