Skip to content

Commit

Permalink
Fix compilation error
Browse files Browse the repository at this point in the history
  • Loading branch information
Lpsd committed Nov 18, 2023
1 parent ea878ef commit 3398882
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Server/mods/deathmatch/logic/luadefs/CLuaPlayerDefs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1171,7 +1171,8 @@ bool CLuaPlayerDefs::RedirectPlayer(CPlayer* pElement, std::string strHost, unsi

if (mArgs.has_value())
{
auto& strArgs = ArgMapToStringMap(mArgs.value());
auto& mapArgs = mArgs.value();
auto& strArgs = ArgMapToStringMap(mapArgs);
strDetails = StringMapToArgString(strArgs);
}

Expand Down

0 comments on commit 3398882

Please sign in to comment.