1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-11-28 08:48:48 +02:00

Relaxed ordering requirements - player can start turn even if players

before him are waiting to act. E.g. green can start turn even if blue
and red are in contact and blue is yet to start his turn
This commit is contained in:
Ivan Savenko 2023-11-09 00:08:13 +02:00
parent 864462b84a
commit 18c0217679

View File

@ -163,7 +163,7 @@ bool TurnOrderProcessor::mustActBefore(PlayerColor left, PlayerColor right) cons
if (!leftInfo->isHuman() && rightInfo->isHuman())
return false;
return left < right;
return false;
}
bool TurnOrderProcessor::canStartTurn(PlayerColor which) const