Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion static/js/rando_options.js
Original file line number Diff line number Diff line change
Expand Up @@ -2122,7 +2122,7 @@ function getTotalItemCounts() {
}
const notifier = document.getElementById("item_count_collective");
const notif_alert = document.getElementById("item_count_collective_alert");
notifier.textContent = `Current Total: ${total} (Vanilla is 298)`;
notifier.textContent = `Current Total: ${total} (Maximum Total is 298)`;
if (total <= 298) {
notifier.style.color = "white";
notif_alert.setAttribute("hidden", "hidden");
Expand Down
4 changes: 2 additions & 2 deletions templates/complex-options/item-totals.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ <h1 class="modal-title title" id="itemCountModalLabel">CONFIGURE ITEM COUNTS</h1
<div class="container-fluid">
<p>
Configure the total amount of items for some item types that will be placed into the world. Items that aren't shuffled will be reset back to their default value.<br />
<strong id="item_count_collective">Current Total: 298 (Vanilla)</strong>
<strong id="item_count_collective_alert" hidden>You are over the vanilla total! Only do this if you know your item pools can accommodate this!</strong>
<strong id="item_count_collective">Current Total: 298 (Maximum)</strong>
<strong id="item_count_collective_alert" hidden>You are over the maximum total! Only do this if you know your item pools can accommodate this!</strong>
</p>
<div class="d-flex flex-wrap justify-content-center">
{% set item_list = [
Expand Down
Loading