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 11# UnderScript Changelog
22
3+ ## Version 0.63.7 (2025-09-02)
4+ 1 . Fix battle log
5+
36## Version 0.63.6 (2025-08-15)
471 . Minor bug fixes
58
Original file line number Diff line number Diff line change @@ -13,14 +13,15 @@ const setting = settings.register({
1313 page : 'Game' ,
1414} ) ;
1515
16+ const ignoreModes = [ 'BOSS' , 'STORY' , 'TUTORIAL' ] ;
1617eventManager . on ( 'GameStart' , ( ) => {
1718 eventManager . on ( 'connect' , ( data ) => {
1819 const val = sessionStorage . getItem ( `underscript.bgm.${ data . gameId } ` ) ;
1920 if ( setting . value ( ) && val ) {
2021 const path = isApril ( ) && ! aprilFools . value ( ) ? IMAGES : 'images' ;
2122 $ ( 'body' ) . css ( 'background-image' , `url('${ path } /backgrounds/${ val } .png')` ) ;
2223 // Check special skins
23- if ( data . gameType !== 'BOSS' && global ( 'profileSkinsEnabled' ) ) {
24+ if ( ! ignoreModes . includes ( data . gameType ) && global ( 'profileSkinsEnabled' ) ) {
2425 global ( 'checkSpecialProfileSkin' ) ( JSON . parse ( data . yourProfileSkin ) ) ;
2526 }
2627 }
You can’t perform that action at this time.
0 commit comments