mirror of
https://github.com/Acamaeda/The-Modding-Tree.git
synced 2024-11-21 16:13:55 +00:00
Now will still use row and col if supplied
This commit is contained in:
parent
c827272d56
commit
dff5071a7e
2 changed files with 1 additions and 1 deletions
|
@ -148,7 +148,6 @@ addLayer("c", {
|
|||
},
|
||||
},
|
||||
buyables: {
|
||||
|
||||
showRespec: true,
|
||||
respec() { // Optional, reset things and give back your currency. Having this function makes a respec button appear
|
||||
player[this.layer].points = player[this.layer].points.add(player[this.layer].spentOnBuyables) // A built-in thing to keep track of this but only keeps a single value
|
||||
|
|
|
@ -231,6 +231,7 @@ function readData(data, args=null){
|
|||
}
|
||||
|
||||
function setRowCol(upgrades) {
|
||||
if (upgrades.rows && upgrades.cols) return
|
||||
let maxRow = 0
|
||||
let maxCol = 0
|
||||
for (up in upgrades) {
|
||||
|
|
Loading…
Reference in a new issue