File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 1
1
# UnderScript Changelog
2
2
3
+ ## Version 0.63.7 (2025-09-02)
4
+ 1 . Fix battle log
5
+
3
6
## Version 0.63.6 (2025-08-15)
4
7
1 . Minor bug fixes
5
8
Original file line number Diff line number Diff line change @@ -13,14 +13,15 @@ const setting = settings.register({
13
13
page : 'Game' ,
14
14
} ) ;
15
15
16
+ const ignoreModes = [ 'BOSS' , 'STORY' , 'TUTORIAL' ] ;
16
17
eventManager . on ( 'GameStart' , ( ) => {
17
18
eventManager . on ( 'connect' , ( data ) => {
18
19
const val = sessionStorage . getItem ( `underscript.bgm.${ data . gameId } ` ) ;
19
20
if ( setting . value ( ) && val ) {
20
21
const path = isApril ( ) && ! aprilFools . value ( ) ? IMAGES : 'images' ;
21
22
$ ( 'body' ) . css ( 'background-image' , `url('${ path } /backgrounds/${ val } .png')` ) ;
22
23
// Check special skins
23
- if ( data . gameType !== 'BOSS' && global ( 'profileSkinsEnabled' ) ) {
24
+ if ( ! ignoreModes . includes ( data . gameType ) && global ( 'profileSkinsEnabled' ) ) {
24
25
global ( 'checkSpecialProfileSkin' ) ( JSON . parse ( data . yourProfileSkin ) ) ;
25
26
}
26
27
}
You can’t perform that action at this time.
0 commit comments