mirror of
https://gitlab.com/ruany/litebans-php.git
synced 2025-05-23 16:32:45 +00:00
12 lines
244 B
PHP
12 lines
244 B
PHP
<?php
|
|
// <<---------Ban Listing Settings (Simplified)--------->> //
|
|
$name = 'LiteBans';
|
|
$serverip = 'mc.example.com';
|
|
|
|
function get_banner_name($banner) {
|
|
if ($banner === "CONSOLE") {
|
|
return "Console";
|
|
}
|
|
return $banner;
|
|
}
|
|
?>
|