1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-05-24 10:37:45 +00:00

Syntax error fix

This commit is contained in:
Toofy 2023-02-08 21:16:56 +00:00
parent ded211a6b5
commit a302446d0a

View file

@ -173,7 +173,7 @@ FreeCompanyPtr FreeCompanyMgr::createFreeCompany( const std::string& name, const
if( !m_fcIdMap.empty() )
{
auto lastIdx = ( --m_fcIdMap.end() )->first;
auto lastIdx = ( m_fcIdMap.end() )->first;
freeCompanyId = lastIdx + 1;
}