summaryrefslogtreecommitdiff
path: root/pages/byspecies.inc
diff options
context:
space:
mode:
Diffstat (limited to 'pages/byspecies.inc')
-rw-r--r--pages/byspecies.inc5
1 files changed, 4 insertions, 1 deletions
diff --git a/pages/byspecies.inc b/pages/byspecies.inc
index 294dee7..4a9ce66 100644
--- a/pages/byspecies.inc
+++ b/pages/byspecies.inc
@@ -31,6 +31,7 @@ function page() { global $lang;
$merpony = [];
$human = [];
$kirin = [];
+ $deer = [];
foreach ($members as $member) {
foreach ($member["_metadata"]["species"] as $species) {
@@ -44,6 +45,7 @@ function page() { global $lang;
if ($species === "human") $human[] = $member;
if ($species === "merpony") $merpony[] = $member;
if ($species === "kirin") $kirin[] = $member;
+ if ($species === "deer") $deer[] = $member;
}
}
@@ -53,7 +55,8 @@ function page() { global $lang;
if (count($alicorn) > 0) species($alicorn, "alicorn", $lang["species"]["alicorn"][3]);
if (count($batpony) > 0) species($batpony, "batpony", $lang["species"]["batpony"][3]);
if (count($crystal) > 0) species($crystal, "crystal", $lang["species"]["crystal"][3]);
- if (count($kirin) > 0) species($kirin, "kirin", "Kirin");
+ if (count($deer) > 0 ) species($deer, "deer", "Deers");
+ if (count($kirin) > 0) species($kirin, "kirin", "Kirins");
if (count($changeling) > 0) species($changeling, "changeling", "Changelings");
if (count($merpony) > 0) species($merpony, "merpony", "Merponies");
if (count($human) > 0) species($human, "human", "Humans");