1
0
Fork 0
mirror of https://github.com/Acamaeda/The-Modding-Tree.git synced 2025-05-12 04:51:06 +00:00

doReset on non-numeric rows

This commit is contained in:
Harley White 2021-06-10 00:32:07 -04:00
parent 0de11fc7ac
commit 50e7ac23d2
3 changed files with 8 additions and 2 deletions

View file

@ -228,7 +228,9 @@ function doReset(layer, force=false) {
player.points = (row == 0 ? decimalZero : getStartPoints())
for (let x = row; x >= 0; x--) rowReset(x, layer)
rowReset("side", layer)
for (r in OTHER_LAYERS){
rowReset(r, layer)
}
prevOnReset = undefined
player[layer].resetTime = 0