Can you, using only late airlifts, do an airlift to a teammate?
function Server_AdvanceTurn_End(game,addNewOrder)
if(executed == false) then
executed = true;
for _,order in pairs(SkippedAirlifts)do
if(order.PlayerID == game.ServerGame.LatestTurnStanding.Territories[order.FromTerritoryID].OwnerPlayerID)then
if(game.ServerGame.LatestTurnStanding.Territories[order.FromTerritoryID].OwnerPlayerID == game.ServerGame.LatestTurnStanding.Territories[order.ToTerritoryID].OwnerPlayerID)then
addNewOrder(order);
end
end
end
end
end
Looks like no, in the code.
Guess the mod was never tested/intended for team-games. It's a relatively easy fix/change.
Edited 3/31/2020 01:02:44