1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-24 21:57:44 +00:00

removed senseless case

This commit is contained in:
AriAvery 2018-11-09 10:39:56 +01:00
parent d6118e9d80
commit c726d7074b

View file

@ -280,11 +280,6 @@ void Core::Land::Update( uint32_t currTime )
m_nextDrop = currTime + 21600;
m_currentPrice = ( m_currentPrice / 100 ) * 99.58;
}
else if( m_currentPrice == 0 )
{
m_nextDrop = currTime + 21600;
m_currentPrice = m_initPrice;
}
m_devaluationTime = m_nextDrop - currTime;
UpdateDatabase();
}