Skip to content
Snippets Groups Projects
Commit b2ed4e5e authored by Pregmodder's avatar Pregmodder
Browse files

Merge branch 'pregmod-master' into 'pregmod-master'

Fixes

Closes #3059

See merge request !9360
parents ddf21538 83cf9a13
No related branches found
No related tags found
1 merge request!9360Fixes
Pipeline #25702 passed
...@@ -13,14 +13,6 @@ function jsDef(x) { ...@@ -13,14 +13,6 @@ function jsDef(x) {
return !(typeof x === "undefined" || x === null || x === undefined); 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 * Determines if a is between low and high
* @param {number} a * @param {number} a
......
...@@ -2,5 +2,5 @@ App.Version = { ...@@ -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. base: "0.10.7.1", // The vanilla version the mod is based off of, this should never be changed.
pmod: "3.9.6", pmod: "3.9.6",
commitHash: null, 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.
}; };
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment