stuff [2]

github didn't sync this
This commit is contained in:
Quacky 2017-09-04 21:35:18 -05:00
parent 083b61962b
commit a7022b7a13
1 changed files with 16 additions and 2 deletions

View File

@ -58,9 +58,16 @@ namespace RBXLegacyLauncher
return true; return true;
} }
else else
{
if (GlobalVars.AdminMode == false)
{ {
return false; return false;
} }
else
{
return true;
}
}
} }
} }
} }
@ -79,9 +86,16 @@ namespace RBXLegacyLauncher
return true; return true;
} }
else else
{
if (GlobalVars.AdminMode == false)
{ {
return false; return false;
} }
else
{
return true;
}
}
} }
} }
} }