File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
OngekiScoreLog/app/Services Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -14,17 +14,17 @@ function __construct()
1414 $ temp = $ this ::$ MusicData ->getEstimateExtraLevel ();
1515 $ sameNameList = array_flip ($ this ::$ MusicData ->getSameMusicList ());
1616 foreach ($ temp as $ value ) {
17- $ title = $ value ['title ' ];
18- if (array_key_exists ($ title , $ sameNameList )) {
17+ if (array_key_exists ($ value ['title ' ], $ sameNameList )) {
1918 // 同名曲があるやつ: 主にSingularity / アーティストとジャンルが入る
20- $ title .= ". " . $ value ['artist ' ] . ". " . $ value ['genre ' ];
19+ $ title = $ value [ ' title ' ] . ". " . $ value ['artist ' ] . ". " . $ value ['genre ' ];
2120 $ this ::$ MusicList [$ title ] = $ value ;
2221
2322 // 同名曲があるやつ: 主にPerfect Shining!! / アーティストのみが入る
24- $ title .= ". " . $ value ['artist ' ] . ". " . "" ;
23+ $ title = $ value [ ' title ' ] . ". " . $ value ['artist ' ] . ". " . "" ;
2524 $ this ::$ MusicList [$ title ] = $ value ;
2625 }else {
2726 // 同名曲がないやつ: そのまま
27+ $ title = $ value ['title ' ];
2828 $ this ::$ MusicList [$ title ] = $ value ;
2929 }
3030
You can’t perform that action at this time.
0 commit comments