diff --git a/js/utils.js b/js/utils.js
index 4f12699266a5d314939830e8f09c1789c1327649..09a51932aa4f3a140d97b20ffaa438b2eb55386e 100644
--- a/js/utils.js
+++ b/js/utils.js
@@ -13,14 +13,6 @@ function jsDef(x) {
 	return !(typeof x === "undefined" || x === null || x === undefined);
 }
 
-/**
- * @param {number} n
- * @returns {boolean}
- */
-function isFloat(n) {
-	return Number.isFinite(n) && Math.floor(n) !== n;
-}
-
 /**
  * Determines if a is between low and high
  * @param {number} a
diff --git a/src/002-config/fc-version.js b/src/002-config/fc-version.js
index b10f5192e5ea16e00930f71f15863acc968f094f..5d0c318ff3484e04543706ca3428502ca6761555 100644
--- a/src/002-config/fc-version.js
+++ b/src/002-config/fc-version.js
@@ -2,5 +2,5 @@ App.Version = {
 	base: "0.10.7.1", // The vanilla version the mod is based off of, this should never be changed.
 	pmod: "3.9.6",
 	commitHash: null,
-	release: 1127 // When getting close to 2000,  please remove the check located within the onLoad() function defined at line five of src/js/eventHandlers.js.
+	release: 1128 // When getting close to 2000,  please remove the check located within the onLoad() function defined at line five of src/js/eventHandlers.js.
 };