mirror of
https://github.com/vcmi/vcmi.git
synced 2025-07-13 01:20:34 +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:
@ -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
|
||||
|
Reference in New Issue
Block a user