diff --git a/src/common/kernel/battle.c b/src/common/kernel/battle.c index a8a962aa7..a971ae34f 100644 --- a/src/common/kernel/battle.c +++ b/src/common/kernel/battle.c @@ -740,7 +740,7 @@ CavalryBonus(const unit * u, troop enemy, int type) } else { skl = skl/2; } - return MAX(skl, 0); + return MIN(skl, 4); } }