Skip to content

Commit

Permalink
Merge pull request #831 from project-primera/develop
Browse files Browse the repository at this point in the history
release 0.17.2
  • Loading branch information
slime-hatena committed Apr 15, 2024
2 parents 8e977d5 + 984306b commit 0a1960c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
@if (array_key_exists($s->song_id . "_" . $s->difficulty, $topRankerScore))
<td class="sort_key1">{{$topRankerScore[$s->song_id . "_" . $s->difficulty] . "%"}}</td>
<td class="sort_key2">{{number_format(abs((($s->over_damage_high_score * 100) - ($topRankerScore[$s->song_id . "_" . $s->difficulty] * 100))) / 100, 2)}}%</td>
<td class="sort_key3">{{number_format(($topRankerScore[$s->song_id . "_" . $s->difficulty] != 0 && false) ? (($s->over_damage_high_score * 100) / ($topRankerScore[$s->song_id . "_" . $s->difficulty] * 100)) * 100 : 100, 2)}}%</td>
<td class="sort_key3">{{number_format(($topRankerScore[$s->song_id . "_" . $s->difficulty] != 0) ? (($s->over_damage_high_score * 100) / ($topRankerScore[$s->song_id . "_" . $s->difficulty] * 100)) * 100 : 100, 2)}}%</td>
@else
<td class="sort_key1">?%</td>
<td class="sort_key2">?%</td>
Expand Down

0 comments on commit 0a1960c

Please sign in to comment.