Change Hiscores max xp slider to 10

This commit is contained in:
dginovker 2023-04-02 23:51:50 +09:00
parent f75d958f3c
commit 532eda96e3
2 changed files with 4 additions and 4 deletions

View File

@ -301,9 +301,9 @@ padding-top: 6px;
<table class="center" style="margin: 0 auto;">
<tbody><tr>
<td>
<input class="nonBlueInputSlider" id="maxXP" type="range" min="1" max="20" value="20" step="0.5" oninput="this.nextElementSibling.nextElementSibling.value = this.value % 1 != 0 ? this.value : this.value + '.0'">
<input class="nonBlueInputSlider" id="maxXP" type="range" min="1" max="10" value="10" step="0.5" oninput="this.nextElementSibling.nextElementSibling.value = this.value % 1 != 0 ? this.value : this.value + '.0'">
<br>
Max XP Rate: <output id="maxXPoutput">20</output>
Max XP Rate: <output id="maxXPoutput">10</output>
</td>
</tr>
</tbody></table>

View File

@ -413,11 +413,11 @@ layout: hiscore
<table class="center" style="margin: 0 auto;">
<tr>
<td>
<input class="nonBlueInputSlider" id="maxXP" type="range" min="1" max="20" value="20"
<input class="nonBlueInputSlider" id="maxXP" type="range" min="1" max="10" value="10"
step="0.5"
oninput="this.nextElementSibling.nextElementSibling.value = this.value % 1 != 0 ? this.value : this.value + '.0'">
<br>
Max XP Rate: <output id="maxXPoutput">20</output>
Max XP Rate: <output id="maxXPoutput">10</output>
</td>
</tr>
</table>