diff --git a/changelog.md b/changelog.md index ec035de..c34e7d3 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,6 @@ # The Modding Tree changelog: +# v2.5.6 - 5/14/21 - You can now use non-numeric ids for upgrades, buyables, etc. - Fixed an exploit that let you buy an extra buyable. - Moved basic getter/setter functions to easyAccess.js. diff --git a/js/Demo/demoMod.js b/js/Demo/demoMod.js index 26402d8..539581a 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.5.2", + num: "2.5.6", name: "Dreams Really Do Come True", } diff --git a/js/game.js b/js/game.js index 397d033..52b5d8c 100644 --- a/js/game.js +++ b/js/game.js @@ -5,7 +5,7 @@ var scrolled = false; // Don't change this const TMT_VERSION = { - tmtNum: "2.5.5.2", + tmtNum: "2.5.6", tmtName: "Dreams Really Do Come True" }