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 d0fe2cd commit 0663c61Copy full SHA for 0663c61
changelog.md
@@ -1,5 +1,9 @@
1
# UnderScript Changelog
2
3
+## Version 0.58.2 (2024-05-29)
4
+1. Fixed broken pack buying API
5
+1. Added more cases where chat will reconnect
6
+
7
## Version 0.58.1 (2024-05-24)
8
1. Re-enabled smart disenchant
9
- This is still at your own risk, and you must manually enable it in settings.
src/base/store/buyPacks.js
@@ -48,6 +48,7 @@ wrap(() => {
48
types.forEach((type) => {
49
['', 'Ucp'].forEach((cost) => {
50
const el = document.querySelector(`#btn${cost}${type}Add`);
51
+ if (!el) return;
52
el.onclick = null;
53
el.addEventListener('click', (e) => {
54
const price = type === 'UTY' ? 200 : 100;
0 commit comments