diff --git a/src/items/weapons/weapons.cpp b/src/items/weapons/weapons.cpp index 5181ae6dff4..b9b3966adf6 100644 --- a/src/items/weapons/weapons.cpp +++ b/src/items/weapons/weapons.cpp @@ -932,7 +932,7 @@ int32_t WeaponDistance::getWeaponDamage(const std::shared_ptr &player, c const float attackFactor = player->getAttackFactor(); int32_t minValue = player->getLevel() / 5; - int32_t maxValue = std::round((0.09f * attackFactor) * attackSkill * attackValue + minValue); + int32_t maxValue = std::round((3.0f * attackFactor) * attackSkill * attackValue + minValue); if (maxDamage) { return -maxValue; }