QUOTE(mewsf @ Jun 4 2025, 08:54)

Bug report:
https://forums.e-hentai.org/index.php?showtopic=286148[tjj277408]Legendary Reinforced Buckler of the Barrier (Lv.257, SDE)(start:2.5m)
but it looks like the script thinks start price is 5m

Suggest change:
Line 294
CODE
let start_reg = new RegExp(`(?:(?:^|\\s|\\[))(${TRACKS.join("|")}).*?(?:[sS]tart:).*?(\\d{0,}(?:[kmKMbBtT]))`, "s");
to
CODE
let start_reg = new RegExp(`(?:(?:^|\\s|\\[))(${TRACKS.join("|")}).*?(?:[sS]tart:).*?(\\d+(?:\\.\\d+)?(?:[kmKMbBtT]))`, "s");
This change won't fix a bug that a start price without a suffix (e.g. start: 100000) could be ignored. If you want also fix it, just change
CODE
(?:[kmKMbBtT]))
to
CODE
(?:[kmKMbBtT])?)
This post has been edited by BlackHimari: Jun 4 2025, 11:28