1
0
Fork 0
mirror of https://github.com/Acamaeda/The-Modding-Tree.git synced 2024-11-21 08:12:39 +00:00

chore: Merge

This commit is contained in:
Braeden 2024-10-27 19:54:03 -04:00
commit 0a6abc6472
3 changed files with 3084 additions and 2562 deletions

View file

@ -4,4 +4,4 @@ An incremental game engine based on The Prestige Tree. It still requires program
[Look here for a tutorial on getting started with modding with TMT](docs/tutorials/getting-started.md) [Look here for a tutorial on getting started with modding with TMT](docs/tutorials/getting-started.md)
You can look in the [documentation](docs/!general-info.md) for more information on how it all works, or look at the code in layers.js to see what it all looks like. You can look in the [documentation](docs/!general-info.md) for more information on how it all works, or look at the code in [layers.js](js/layers.js) to see what it all looks like.

File diff suppressed because it is too large Load diff

View file

@ -13,7 +13,7 @@ function getStartOptions() {
showStory: true, showStory: true,
forceOneTab: false, forceOneTab: false,
oldStyle: false, oldStyle: false,
tooltipForcing: true, forceTooltips: true,
hideMilestonePopups: false, hideMilestonePopups: false,
} }
} }
@ -77,5 +77,3 @@ function milestoneShown(layer, id) {
} }
return false; return false;
} }
let formatOption = (opt) => opt ? 'ON' : 'OFF'