Default all localized behavior to European logic #22
@ -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))
|
||||
Tr0n marked this conversation as resolved
Outdated
|
||||
{
|
||||
bLongTimeExpBonusChanged = true;
|
||||
m_iLongTimeExpBonus = 5;
|
||||
|
Loading…
Reference in New Issue
Block a user
I suppose we can get rid of the division by 1.
was unsure if that maybe is used to convert float to int (and if that matters here).
will remove the
/1