mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2025-11-29 17:38:24 +08:00
fix(Core/PlayerUpdates): incorrect backslash in a debug_log (#19630)
This commit is contained in:
@@ -1016,7 +1016,7 @@ void Player::UpdateCombatSkills(Unit* victim, WeaponAttackType attType, bool def
|
|||||||
|
|
||||||
chance = chance < 1.0f ? 1.0f : chance; // minimum chance to increase skill is 1%
|
chance = chance < 1.0f ? 1.0f : chance; // minimum chance to increase skill is 1%
|
||||||
|
|
||||||
LOG_DEBUG("entities.player", "Player::UpdateCombatSkills(defence:{}, playerLevel:{}, moblevel:{}) -> ({}/{}) chance to increase skill is {}\%", defence, playerLevel, moblevel, currentSkillValue, currentSkillMax, chance);
|
LOG_DEBUG("entities.player", "Player::UpdateCombatSkills(defence:{}, playerLevel:{}, moblevel:{}) -> ({}/{}) chance to increase skill is {}%", defence, playerLevel, moblevel, currentSkillValue, currentSkillMax, chance);
|
||||||
|
|
||||||
if (roll_chance_f(chance))
|
if (roll_chance_f(chance))
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user