diff --git a/index.html b/index.html
index 0b950397..1e1f219b 100644
--- a/index.html
+++ b/index.html
@@ -8056,7 +8056,7 @@
-
+
diff --git a/modules/ui/hotkeys.js b/modules/ui/hotkeys.js
index 3367dbb5..1b563d52 100644
--- a/modules/ui/hotkeys.js
+++ b/modules/ui/hotkeys.js
@@ -18,10 +18,9 @@ function handleKeyup(event) {
event.stopPropagation();
- const {code, key, ctrlKey, metaKey, shiftKey, altKey} = event;
+ const {code, key, ctrlKey, metaKey, shiftKey} = event;
const ctrl = ctrlKey || metaKey || key === "Control";
const shift = shiftKey || key === "Shift";
- const alt = altKey || key === "Alt";
if (code === "F1") showInfo();
else if (code === "F2") regeneratePrompt();
@@ -60,11 +59,6 @@ function handleKeyup(event) {
else if (key === "#") toggleAddRiver();
else if (key === "$") createRoute();
else if (key === "%") toggleAddMarker();
- else if (alt && code === "KeyB") console.table(pack.burgs);
- else if (alt && code === "KeyS") console.table(pack.states);
- else if (alt && code === "KeyC") console.table(pack.cultures);
- else if (alt && code === "KeyR") console.table(pack.religions);
- else if (alt && code === "KeyF") console.table(pack.features);
else if (code === "KeyX") toggleTexture();
else if (code === "KeyH") toggleHeight();
else if (code === "KeyB") toggleBiomes();
diff --git a/versioning.js b/versioning.js
index 72c8f037..41199755 100644
--- a/versioning.js
+++ b/versioning.js
@@ -1,7 +1,7 @@
"use strict";
// version and caching control
-const version = "1.99.14"; // generator version, update each time
+const version = "1.99.15"; // generator version, update each time
{
document.title += " v" + version;