Skip to content

Commit

Permalink
Merge pull request #829 from project-primera/develop
Browse files Browse the repository at this point in the history
release 0.17.2
  • Loading branch information
slime-hatena authored Apr 15, 2024
2 parents 76c74f6 + 3e9c8f5 commit 8e977d5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@
<td class="sort_od">{{$s->over_damage_high_score . "%"}}</td>
@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">{{$s->over_damage_high_score - $topRankerScore[$s->song_id . "_" . $s->difficulty]}}%</td>
<td class="sort_key3">{{($topRankerScore[$s->song_id . "_" . $s->difficulty] != 0) ? ($s->over_damage_high_score / $topRankerScore[$s->song_id . "_" . $s->difficulty]) * 100 : 100}}%</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>
@else
<td class="sort_key1">?%</td>
<td class="sort_key2">?%</td>
Expand Down

0 comments on commit 8e977d5

Please sign in to comment.