We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d82446 commit 45fb69eCopy full SHA for 45fb69e
changelog.md
@@ -1,5 +1,8 @@
1
# UnderScript Changelog
2
3
+## Version 0.41.2 (2020-10-15)
4
+1. Fixed Token not working in Craft page (again)
5
+
6
## Version 0.41.1 (2020-10-15)
7
1. Fixed "Token" not working in Crafting page.
8
1. History pings no longer make sound
src/base/library/filter.js
@@ -75,7 +75,7 @@ wrap(function filter() {
75
if (card.rarity === 'BASE' && !card.shiny && !$('#baseRarityInput').prop('checked')) {
76
return true;
77
}
78
- if (card.rarity === 'TOKEN' && !$('#generatedRarityInput').prop('checked')) {
+ if (card.rarity === 'TOKEN' && !$('#tokenRarityInput').prop('checked')) {
79
80
81
0 commit comments