Default all localized behavior to European logic #22

Merged
Exynox merged 20 commits from Tr0n/server:localization/default-gf-eu into nightly 2024-04-09 21:47:23 +03:00
Showing only changes of commit 254f6f6664 - Show all commits

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))
Tr0n marked this conversation as resolved Outdated

I suppose we can get rid of the division by 1.

I suppose we can get rid of the division by 1.
Outdated
Review

was unsure if that maybe is used to convert float to int (and if that matters here).

will remove the /1

was unsure if that maybe is used to convert float to int (and if that matters here). will remove the `/1`
{
bLongTimeExpBonusChanged = true;
m_iLongTimeExpBonus = 5;