Skip to content

Commit 45fb69e

Browse files
committed
fix: token button not generated button :(
1 parent 8d82446 commit 45fb69e

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

changelog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# UnderScript Changelog
22

3+
## Version 0.41.2 (2020-10-15)
4+
1. Fixed Token not working in Craft page (again)
5+
36
## Version 0.41.1 (2020-10-15)
47
1. Fixed "Token" not working in Crafting page.
58
1. History pings no longer make sound

src/base/library/filter.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ wrap(function filter() {
7575
if (card.rarity === 'BASE' && !card.shiny && !$('#baseRarityInput').prop('checked')) {
7676
return true;
7777
}
78-
if (card.rarity === 'TOKEN' && !$('#generatedRarityInput').prop('checked')) {
78+
if (card.rarity === 'TOKEN' && !$('#tokenRarityInput').prop('checked')) {
7979
return true;
8080
}
8181
}

0 commit comments

Comments
 (0)