1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-08-15 20:03:15 +02:00

Fixed tiny but terrible mistake from two commits ago.

This commit is contained in:
Michał W. Urbańczyk
2013-09-29 21:15:02 +00:00
parent 5c6d12400f
commit 149ff4df14

View File

@@ -99,7 +99,7 @@ void CBattleAI::init(shared_ptr<CBattleCallback> CB)
static bool thereRemainsEnemy()
{
return cbc->battleIsFinished();
return !cbc->battleIsFinished();
}
BattleAction CBattleAI::activeStack( const CStack * stack )