mirror of
https://github.com/vcmi/vcmi.git
synced 2025-08-13 19:54:17 +02:00
Fix for showing penalty limit in red for unlimited ranged archers
This commit is contained in:
@@ -614,7 +614,7 @@ uint8_t CUnitState::getSootingRangeDistance() const
|
||||
if(!isShooter())
|
||||
return 0;
|
||||
|
||||
uint8_t shootingRangeDistance = GameConstants::BATTLE_PENALTY_DISTANCE;
|
||||
uint8_t shootingRangeDistance = 255; // no range limit for shooters
|
||||
|
||||
// overwrite full ranged damage distance with the value set in Additional info field of LIMITED_SHOOTING_RANGE bonus
|
||||
if(this->hasBonus(Selector::type()(BonusType::LIMITED_SHOOTING_RANGE)))
|
||||
|
Reference in New Issue
Block a user