Skip to content

Commit 0078e00

Browse files
committed
fix: import bug
1 parent 44921ff commit 0078e00

2 files changed

Lines changed: 18 additions & 1 deletion

File tree

changelog.md

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

3+
## Version 0.45.1 (2021-06-16)
4+
1. Fixed import bug (what does testing mean?)
5+
### New Features
6+
1. Added ability to buy multiple packs
7+
1. Added confirmation for buying packs with UCP
8+
1. Added a setting to switch minigame controls to WASD (disabled by default)
9+
1. Added a random avatar button
10+
1. Added setting to prefer shiny on import (enabled by default)
11+
1. Added "fill deck" button
12+
1. Added confirmation for buying cosmetics
13+
### Fixes
14+
1. Fixed bug with base card skin setting
15+
### Plugins
16+
1. Added API to buy multiple packs
17+
### Misc.
18+
1. Added a 5th slot to the storage rows
19+
320
## Version 0.45.0 (2021-06-16)
421
### New Features
522
1. Added ability to buy multiple packs

src/base/deck/import.shiny.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ wrap(() => {
1111
if (setting.value()) {
1212
list.sort((a, b) => b.shiny - a.shiny);
1313
}
14-
this.super(idCard, list);
14+
return this.super(idCard, list);
1515
}
1616

1717
onPage('Decks', () => {

0 commit comments

Comments
 (0)