mirror of
https://github.com/ChocoTaco1/TacoServer.git
synced 2026-07-14 23:54:32 +00:00
Use $Host Var
This commit is contained in:
parent
4b671d78c5
commit
e35dddc992
1 changed files with 5 additions and 5 deletions
|
|
@ -61,8 +61,8 @@ $dtLoadingScreen::ShowFullScreen = 0;
|
||||||
// Enable/Disable Images
|
// Enable/Disable Images
|
||||||
$dtLoadingScreen::ShowImages = 0;
|
$dtLoadingScreen::ShowImages = 0;
|
||||||
// Enable/Disable Server Logo
|
// Enable/Disable Server Logo
|
||||||
$dtLoadingScreen::ShowLogo = $Host::LoadScreenShowLogo; //$dtLoadingScreen::ShowLogo = 0;
|
//$Host::LoadScreenShowLogo = 0;
|
||||||
$dtLoadingScreen::LogoName = $Host::LoadScreenShowLogoName; //$dtLoadingScreen::LogoName = "dpub/DPUB_logo";
|
//$Host::LoadScreenShowLogoName = "dpub/DPUB_logo";
|
||||||
|
|
||||||
|
|
||||||
// Color safetynet
|
// Color safetynet
|
||||||
|
|
@ -234,11 +234,11 @@ function ALTsendModInfoToClient(%client)
|
||||||
$dtLoadingScreen::LoadScreenMessage[$dmlP++] = " ";
|
$dtLoadingScreen::LoadScreenMessage[$dmlP++] = " ";
|
||||||
$dtLoadingScreen::LoadScreenMessage[$dmlP++] = " ";
|
$dtLoadingScreen::LoadScreenMessage[$dmlP++] = " ";
|
||||||
}
|
}
|
||||||
else if($dtLoadingScreen::ShowLogo)
|
else if($Host::LoadScreenShowLogo)
|
||||||
{
|
{
|
||||||
if(%client.dmpVersion $=$DMP::Version)
|
if(%client.dmpVersion $=$DMP::Version)
|
||||||
{
|
{
|
||||||
$dtLoadingScreen::LoadScreenMessage[$dmlP++] = "<bitmap:" @ $dtLoadingScreen::LogoName @ ">";
|
$dtLoadingScreen::LoadScreenMessage[$dmlP++] = "<bitmap:" @ $Host::LoadScreenShowLogoName @ ">";
|
||||||
|
|
||||||
$dtLoadingScreen::LoadScreenMessage[$dmlP++] = " ";
|
$dtLoadingScreen::LoadScreenMessage[$dmlP++] = " ";
|
||||||
$dtLoadingScreen::LoadScreenMessage[$dmlP++] = " ";
|
$dtLoadingScreen::LoadScreenMessage[$dmlP++] = " ";
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue