mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-05-03 01:07:47 +00:00
shouldn't default to a nonexistant onlinestatus...
This commit is contained in:
parent
7a64e5f33f
commit
24a2de55e1
1 changed files with 1 additions and 1 deletions
|
@ -174,7 +174,7 @@ Core::Common::OnlineStatus Core::Entity::Player::getOnlineStatus()
|
|||
return OnlineStatus::Online;
|
||||
|
||||
uint32_t statusDisplayOrder = 0xFF14;
|
||||
uint32_t applicableStatus = 0;
|
||||
uint32_t applicableStatus = static_cast< uint32_t >( OnlineStatus::Online );
|
||||
|
||||
for( uint32_t i = 0; i < std::numeric_limits< decltype( m_onlineStatus ) >::digits; i++ )
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue