diff --git a/changelog.md b/changelog.md index 9c4f53e..698fd5e 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,8 @@ # The Modding Tree changelog: +### v2.5.10.1 - 5/23/21 +- Actually fixed the tooltip issue. + ### v2.5.10 - 5/22/21 - Tooltips can now show over the top overlay again. - Tweaked number formatting (e1000's keep the decimal places on the mantissa.) diff --git a/js/Demo/demoMod.js b/js/Demo/demoMod.js index 6d0fd0e..33eabfc 100644 --- a/js/Demo/demoMod.js +++ b/js/Demo/demoMod.js @@ -11,7 +11,7 @@ let modInfo = { // Set your version in num and name let VERSION = { - num: "2.5.10", + num: "2.5.10.1", name: "Dreams Really Do Come True", } diff --git a/js/game.js b/js/game.js index 5c19063..0f804a5 100644 --- a/js/game.js +++ b/js/game.js @@ -4,7 +4,7 @@ var gameEnded = false; // Don't change this const TMT_VERSION = { - tmtNum: "2.5.10", + tmtNum: "2.5.10.1", tmtName: "Dreams Really Do Come True" }