mirror of
https://github.com/MadeBaruna/paimon-moe.git
synced 2025-01-03 09:49:06 +01:00
Merge branch 'MadeBaruna:main' into main
This commit is contained in:
commit
1c7324ec6d
2 changed files with 6 additions and 3 deletions
|
@ -61,6 +61,9 @@
|
|||
case '4':
|
||||
selectedType = types[1];
|
||||
break;
|
||||
case '5':
|
||||
selectedType = types[3];
|
||||
break;
|
||||
}
|
||||
|
||||
bannerIndex = (Number(idNumber) % typeNumber[selectedType.value]) - 1;
|
||||
|
@ -199,7 +202,7 @@
|
|||
legendaryList = legendaryList;
|
||||
rareList = rareList;
|
||||
|
||||
if (type !== 'standard') {
|
||||
if (type !== 'standard' && type !== 'chronicled') {
|
||||
let totalCount = 0;
|
||||
let totalGuaranteed = 0;
|
||||
for (let i = 0; i < featured.items.length; i++) {
|
||||
|
@ -564,7 +567,7 @@
|
|||
</div>
|
||||
<div class="flex flex-col xl:flex-row space-y-4 xl:space-x-4 xl:space-y-0 mb-4">
|
||||
<table>
|
||||
{#if featured.type === 'standard'}
|
||||
{#if featured.type === 'standard' || featured.type === 'chronicled'}
|
||||
<tr>
|
||||
<td
|
||||
class="bg-background rounded-l-xl py-4 pl-4 pr-2 font-black text-white text-5xl leading-10 text-right"
|
||||
|
|
|
@ -7,7 +7,7 @@ const IMAGE_CACHE = `cacheimg${IMAGE_CACHE_VER}`;
|
|||
|
||||
const IMAGE_URL = `${self.location.origin}/images/`;
|
||||
|
||||
const changelog = ['Add chronicled wish banner', 'Add Chiori & weapons', 'Update timelines', 'Update achievements'];
|
||||
const changelog = ['Fix global wish stats page for chronicled wish banner', 'Add chronicled wish banner'];
|
||||
|
||||
const channel = new BroadcastChannel('paimonmoe-sw');
|
||||
|
||||
|
|
Loading…
Reference in a new issue