1
0
Fork 0

minor change in LOGD call

This commit is contained in:
Daniel O'Brien 2013-11-17 00:13:53 +11:00
parent c7f38761ed
commit cd1c405894
1 changed files with 2 additions and 2 deletions

View File

@ -381,8 +381,8 @@ short cPlayer::DeltaExperience(short a_Xp_delta)
m_LifetimeTotalXp += a_Xp_delta;
}
LOGD("Player \"%s\" earnt %d experience, total is now: %d",
m_PlayerName.c_str(), a_Xp_delta, m_XpTotal);
LOGD("Player \"%s\" gained/lost %d experience, total is now: %d",
m_PlayerName.c_str(), a_Xp_delta, m_CurrentXp);
// Set experience to be updated
m_bDirtyExperience = true;