big bug preventing pets from aging past the pup phase

This commit is contained in:
zyl 2024-07-04 12:44:47 -07:00
parent f5f19b5b56
commit 2dfc19e07a
No known key found for this signature in database
2 changed files with 7 additions and 1 deletions

View file

@ -513,7 +513,7 @@
pet.needsAdvancement = false;
pet.updateDom();
};
for (let btn of document.querySelectorAll("button.advancement")) {
for (let btn of document.querySelectorAll("button.advance")) {
btn.addEventListener("click", advance);
}