1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-30 23:18:08 +02:00

Merge pull request #2800 from PandarinDev/missing_exp_for_towns

Award 500 experience for towns conquered during a battle.
This commit is contained in:
Nordsoft91 2023-09-12 00:39:47 +02:00 committed by GitHub
commit 7f321b2fcb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -243,6 +243,11 @@ void BattleResultProcessor::endBattle(const CBattleInfoCallback & battle)
battleResult->exp[0] += 500;
}
// Give 500 exp to winner if a town was conquered during the battle
const auto * defendedTown = battle.battleGetDefendedTown();
if (defendedTown && battleResult->winner == BattleSide::ATTACKER)
battleResult->exp[BattleSide::ATTACKER] += 500;
if(heroAttacker)
battleResult->exp[0] = heroAttacker->calculateXp(battleResult->exp[0]);//scholar skill
if(heroDefender)