mirror of
https://github.com/ChocoTaco1/TacoServer.git
synced 2026-01-19 16:14:44 +00:00
LoadingScreen Safeguards
Shorter time Added check
This commit is contained in:
parent
7fe6bb3b98
commit
7cd1cb8815
|
|
@ -51,7 +51,7 @@
|
|||
|
||||
// First Screen loading time (Map Screen)
|
||||
// If this is set too low the second screen wont show at all
|
||||
$dtLoadingScreen::FirstScreen = 5500;
|
||||
$dtLoadingScreen::FirstScreen = 3000;
|
||||
// Second Screen Delay
|
||||
$dtLoadingScreen::Delay = 0;
|
||||
|
||||
|
|
@ -149,6 +149,10 @@ if (!isActivePackage(LoadScreenPackage) && $Host::LoadingScreenUseDebrief)
|
|||
// Just make our own
|
||||
function ALTsendModInfoToClient(%client)
|
||||
{
|
||||
if(%client.isReady){
|
||||
return;
|
||||
}
|
||||
|
||||
// Wont allow Debrief on consecutive map loads
|
||||
if(%client.loaded)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue