diff --git a/index.html b/index.html
index 22a149ef..f08fde8b 100644
--- a/index.html
+++ b/index.html
@@ -7930,7 +7930,7 @@
-
+
@@ -7939,9 +7939,9 @@
-
-
-
+
+
+
@@ -7983,7 +7983,7 @@
-
+
diff --git a/modules/ui/general.js b/modules/ui/general.js
index 13ea93f3..17f8886d 100644
--- a/modules/ui/general.js
+++ b/modules/ui/general.js
@@ -27,7 +27,7 @@ const tipBackgroundMap = {
error: "linear-gradient(0.1turn, #ffffff00, #e11d1dcc, #ffffff00)"
};
-function tip(tip = "Tip is undefined", main = false, type = "info", time = 0) {
+function tip(tip, main = false, type = "info", time = 0) {
tooltip.innerHTML = tip;
tooltip.style.background = tipBackgroundMap[type];
diff --git a/modules/ui/hotkeys.js b/modules/ui/hotkeys.js
index 935d228d..4543d187 100644
--- a/modules/ui/hotkeys.js
+++ b/modules/ui/hotkeys.js
@@ -23,8 +23,6 @@ function handleKeyup(event) {
const shift = shiftKey || key === "Shift";
const alt = altKey || key === "Alt";
- console.log(code, key);
-
if (code === "F1") showInfo();
else if (code === "F2") regeneratePrompt();
else if (code === "F6") saveMap("storage");
diff --git a/versioning.js b/versioning.js
index 7ab7933a..5e83376b 100644
--- a/versioning.js
+++ b/versioning.js
@@ -1,7 +1,7 @@
"use strict";
// version and caching control
-const version = "1.94.00"; // generator version, update each time
+const version = "1.94.01"; // generator version, update each time
{
document.title += " v" + version;