diff options
author | Minteck <contact@minteck.org> | 2022-08-10 00:23:09 +0200 |
---|---|---|
committer | Minteck <contact@minteck.org> | 2022-08-10 00:23:09 +0200 |
commit | 84dd0735820b16b60f600284d35183d76547a71f (patch) | |
tree | 779e22994583e04fe4a323e5aed5f3d267dfcde4 /includes/system | |
parent | 0417260bf158c5d7b62888dae2e202b0de115a05 (diff) | |
download | pluralconnect-84dd0735820b16b60f600284d35183d76547a71f.tar.gz pluralconnect-84dd0735820b16b60f600284d35183d76547a71f.tar.bz2 pluralconnect-84dd0735820b16b60f600284d35183d76547a71f.zip |
Stuff
Diffstat (limited to 'includes/system')
-rw-r--r-- | includes/system/species.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/includes/system/species.php b/includes/system/species.php index a2251d0..7747809 100644 --- a/includes/system/species.php +++ b/includes/system/species.php @@ -30,6 +30,7 @@ function species(array $members, string $id, string $name) { global $systemID; ? $unicorn = []; $alicorn = []; $batpony = []; + $crystal = []; foreach ($members as $member) { foreach ($member["_metadata"]["species"] as $species) { @@ -38,6 +39,7 @@ function species(array $members, string $id, string $name) { global $systemID; ? if ($species === "unicorn") $unicorn[] = $member; if ($species === "alicorn") $alicorn[] = $member; if ($species === "batpony") $batpony[] = $member; + if ($species === "crystal") $crystal[] = $member; } } @@ -48,6 +50,7 @@ function species(array $members, string $id, string $name) { global $systemID; ? <?php species($unicorn, "unicorn", "Unicorns"); ?> <?php species($alicorn, "alicorn", "Alicorns"); ?> <?php species($batpony, "batpony", "Bat ponies"); ?> + <?php species($crystal, "crystal", "Crystal ponies"); ?> </div> <?php require_once $_SERVER['DOCUMENT_ROOT'] . '/includes/footer.php'; ?>
\ No newline at end of file |