We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4d6e85f + 20b0fd0 commit 8bcca3fCopy full SHA for 8bcca3f
OngekiScoreLog/app/Services/OngekiUtility.php
@@ -16,9 +16,18 @@ function __construct()
16
foreach ($temp as $value) {
17
$title = $value['title'];
18
if (array_key_exists($title, $sameNameList)) {
19
+ // 同名曲があるやつ: 主にSingularity / アーティストとジャンルが入る
20
$title .= "." . $value['artist'] . "." . $value['genre'];
21
+ $this::$MusicList[$title] = $value;
22
+
23
+ // 同名曲があるやつ: 主にPerfect Shining!! / アーティストのみが入る
24
+ $title .= "." . $value['artist'] . "." . "";
25
26
+ }else{
27
+ // 同名曲がないやつ: そのまま
28
29
}
- $this::$MusicList[$title] = $value;
30
31
unset($this::$MusicList[$title]['title']);
32
33
0 commit comments