summaryrefslogtreecommitdiff
path: root/includes/rainbow.inc
diff options
context:
space:
mode:
Diffstat (limited to 'includes/rainbow.inc')
-rw-r--r--includes/rainbow.inc8
1 files changed, 0 insertions, 8 deletions
diff --git a/includes/rainbow.inc b/includes/rainbow.inc
index fba960e..01b234c 100644
--- a/includes/rainbow.inc
+++ b/includes/rainbow.inc
@@ -45,14 +45,6 @@ function getMembersByColor($hideCloudburst = false): array {
uasort($members, function ($a, $b) {
return $a['hsl'][0] - $b['hsl'][0];
});
- $members = [
- ...array_filter($members, function ($i) {
- return $i['hsl'][2] < 0.9 || $i['hsl'][1] > 0.2;
- }),
- ...array_filter($members, function ($i) {
- return $i['hsl'][2] >= 0.9 || $i['hsl'][1] <= 0.2;
- })
- ];
$sorted = [];
foreach ($members as $data) {