remove division by 1 for party exp bonus

This commit is contained in:
Tr0n 2024-04-09 17:24:09 +02:00
parent 0072bc5e14
commit 254f6f6664
No known key found for this signature in database

View File

@ -1356,7 +1356,7 @@ void CParty::Update()
bool bLongTimeExpBonusChanged = false;
// 파티 결성 후 충분한 시간이 지나면 경험치 보너스를 받는다.
if (!m_iLongTimeExpBonus && (get_dword_time() - m_dwPartyStartTime > PARTY_ENOUGH_MINUTE_FOR_EXP_BONUS * 60 * 1000 / 1))
if (!m_iLongTimeExpBonus && (get_dword_time() - m_dwPartyStartTime > PARTY_ENOUGH_MINUTE_FOR_EXP_BONUS * 60 * 1000))
{
bLongTimeExpBonusChanged = true;
m_iLongTimeExpBonus = 5;