diff --git a/zone/exp.cpp b/zone/exp.cpp index 49940524f..f5d42dcd6 100644 --- a/zone/exp.cpp +++ b/zone/exp.cpp @@ -805,14 +805,14 @@ void Client::SetEXP(uint64 set_exp, uint64 set_aaxp, bool isrezzexp) { } if (m_pp.exp != set_exp) { - const auto xp_value = set_exp - m_pp.exp; - const auto export_string = fmt::format("{}", xp_value); + const auto exp_value = set_exp - m_pp.exp; + const auto export_string = fmt::format("{}", exp_value); parse->EventPlayer(EVENT_EXP_GAIN, this, export_string, 0); } if (m_pp.expAA != set_aaxp) { - const auto aaxp_value = set_aaxp - m_pp.expAA; - const auto export_string = fmt::format("{}",aaxp_value); + const auto aa_exp_value = set_aaxp - m_pp.expAA; + const auto export_string = fmt::format("{}", aa_exp_value); parse->EventPlayer(EVENT_AA_EXP_GAIN, this, export_string, 0); }