feature/fix-bestiary-xp-bonus-bp-tier #9

Merged
incentive merged 7 commits from feature/fix-bestiary-xp-bonus-bp-tier into main 2026-06-13 20:40:43 -04:00
2 changed files with 5 additions and 1 deletions
Showing only changes of commit cc51e1c9a7 - Show all commits
+4
View File
@@ -159,6 +159,10 @@
function displayValue(row, key) { function displayValue(row, key) {
const value = row[key]; const value = row[key];
if (key === "exp" && row.difficulty !== "Ultimate") {
return Math.round(Number(value || 0) * xpBonusMultiplier());
}
if (row.difficulty !== "Ultimate") { if (row.difficulty !== "Ultimate") {
return value ?? ""; return value ?? "";
} }
+1 -1
View File
@@ -113,6 +113,6 @@
</div> </div>
</footer> </footer>
</div> </div>
<script src="bestiary-tables.js?v=xp-bonus-rerender-2" defer></script> <script src="bestiary-tables.js?v=xp-bonus-all-difficulties-1" defer></script>
</body> </body>
</html> </html>