mirror of
https://github.com/BeamMP/BeamMP-Server.git
synced 2025-07-01 23:35:41 +00:00
Remove expiry check and add braces
This commit is contained in:
parent
caafb216c9
commit
623dfa17d5
@ -597,10 +597,11 @@ sol::table TLuaEngine::StateThreadData::Lua_GetPlayerIdentifiers(int ID) {
|
|||||||
|
|
||||||
std::string TLuaEngine::StateThreadData::Lua_GetPlayerRole(int ID) {
|
std::string TLuaEngine::StateThreadData::Lua_GetPlayerRole(int ID) {
|
||||||
auto MaybeClient = GetClient(mEngine->Server(), ID);
|
auto MaybeClient = GetClient(mEngine->Server(), ID);
|
||||||
if (MaybeClient && !MaybeClient.value().expired())
|
if (MaybeClient) {
|
||||||
return MaybeClient.value().lock()->GetRoles();
|
return MaybeClient.value().lock()->GetRoles();
|
||||||
else
|
} else {
|
||||||
return "";
|
return "";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user