1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-25 05:57:45 +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_nextDrop = currTime + 21600;
m_currentPrice = ( m_currentPrice / 100 ) * 99.58; 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; m_devaluationTime = m_nextDrop - currTime;
UpdateDatabase(); UpdateDatabase();
} }