diff --git a/index.html b/index.html
index e3b6b74f..084f28a9 100644
--- a/index.html
+++ b/index.html
@@ -365,7 +365,7 @@
Azgaar's
Fantasy Map Generator
-
v
+
LOADING...
@@ -4646,7 +4646,7 @@
Doubled:
-
+
diff --git a/modules/markers-generator.js b/modules/markers-generator.js
index 26d27825..14d3ee59 100644
--- a/modules/markers-generator.js
+++ b/modules/markers-generator.js
@@ -1,7 +1,7 @@
"use strict";
window.Markers = (function () {
- let config = [];
+ let config = getDefaultConfig();
let occupied = [];
function getDefaultConfig() {
diff --git a/versioning.js b/versioning.js
index c0dcf11b..44b03b2a 100644
--- a/versioning.js
+++ b/versioning.js
@@ -1,12 +1,12 @@
"use strict";
// version and caching control
-const version = "1.89.33"; // generator version, update each time
+const version = "1.89.34"; // generator version, update each time
{
document.title += " v" + version;
- const loadingScreenVersion = document.getElementById("version");
- if (loadingScreenVersion) loadingScreenVersion.innerHTML = version;
+ const loadingScreenVersion = document.getElementById("versionText");
+ if (loadingScreenVersion) loadingScreenVersion.innerText = `v${version}`;
const versionNumber = parseFloat(version);
const storedVersion = localStorage.getItem("version") ? parseFloat(localStorage.getItem("version")) : 0;