Skip to content

Commit

Permalink
Slight adjustments to SR gacha 4* summary
Browse files Browse the repository at this point in the history
  • Loading branch information
stdcall0 committed Apr 15, 2024
1 parent 301d42f commit 8d9d39c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion apps/starrail_gacha.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,11 @@ export class SRGachaPlugin extends Plugin {

if (s4.length > 0) {
msg.push("4*: ");
let st = "- ";
s4.forEach(x => {
msg.push(`- ${x.item.displayName} (${x.count5} >> ${x.count})`);
st += `${x.item.displayName} (${x.count}), `;
});
msg.push(st.substring(0, st.length - 2));
msg.push("");
}

Expand Down

0 comments on commit 8d9d39c

Please sign in to comment.