mirror of
https://github.com/sigmasternchen/mobmash.click
synced 2025-03-15 08:09:02 +00:00
11 lines
No EOL
317 B
PHP
11 lines
No EOL
317 B
PHP
<?php
|
|
|
|
function getFaviconUrl($left, $right) {
|
|
$name = "/images/eggs/chimera/" .
|
|
strtolower(str_replace(" ", "_", $left["name"] . " " . $right["name"] . ".png"));
|
|
if (file_exists(__DIR__ . "/../html/" . $name)) {
|
|
return $name;
|
|
} else {
|
|
return "/images/eggs/spawn_egg.png";
|
|
}
|
|
} |