1
0
Fork 0
mirror of https://github.com/Acamaeda/The-Modding-Tree.git synced 2024-11-21 16:13:55 +00:00

Basic fixes

This commit is contained in:
Harley White 2021-06-08 19:39:23 -04:00
parent 99a9c2344e
commit 0de11fc7ac
3 changed files with 5 additions and 2 deletions

View file

@ -1,7 +1,9 @@
# The Modding Tree changelog:
- Broke the css file down into many files to make it easier to find and customize what matters. If you already have custom CSS, keep that and ignore the new ones maybe?
- Broke up style.css into many files to make it easier to find and customize what matters. If you already have custom CSS, keep that and ignore the new ones maybe?
- Added buyable and clickable trees.
- Fixed the passiveGeneration display.
- Fixed "marked" feature.
## v2.6.1 - 6/7/21
- Added global background style to mod.js.

View file

@ -58,7 +58,7 @@ var systemComponents = {
tmp[layer].canClick ? (tmp[layer].tooltip ? tmp[layer].tooltip : 'I am a button!')
: (tmp[layer].tooltipLocked ? tmp[layer].tooltipLocked : 'I am a button!')
)"></tooltip>
<node-mark :layer='layer' :data='layers[layer].marked'></node-mark></span>
<node-mark :layer='layer' :data='tmp[layer].marked'></node-mark></span>
</button>
`
},

View file

@ -100,6 +100,7 @@ function updateTemp() {
tmp[layer].trueGlowColor = tmp[layer].glowColor
tmp[layer].notify = shouldNotify(layer)
tmp[layer].prestigeNotify = prestigeNotify(layer)
if (tmp[layer].passiveGeneration === true) tmp[layer].passiveGeneration = 1 // new Decimal(true) = decimalZero
}