Fix stuffs

This commit is contained in:
SilicaAndPina 2021-06-28 01:05:38 +12:00
parent 456cc2943b
commit eb8ea14fa7
5 changed files with 19 additions and 8 deletions

View file

@ -22,7 +22,11 @@ namespace HISP.Server
{
bool login = loggedIn;
if (LoggedinUser == null)
login = false;
return false;
if (LoggedinUser.LoggedinClient == null)
return false;
if (isDisconnecting)
return false;
return login;
}
set