function GetGameInitialItemsOverrides()
return {
-- Prevent granting initial techs since we are explicitly setting them here.
GrantInitialFreeTechsPerTeam = {
[Spain_PlayerID] = false,
[France_PlayerID] = false,
[England_PlayerID] = false,
[Inca_PlayerID] = false,
[Aztec_PlayerID] = false,
[Iroquois_PlayerID] = false
},
-- Prevent setting initial gold since we are setting it explicitly in this script.
GrantInitialGoldPerPlayer = {
[Spain_PlayerID] = false,
[France_PlayerID] = false,
[England_PlayerID] = false,
[Inca_PlayerID] = false,
[Aztec_PlayerID] = false,
[Iroquois_PlayerID] = false
},
-- Prevent initial units per player since we are placing them in this script.
GrantInitialUnitsPerPlayer = {
[Spain_PlayerID] = false,
[France_PlayerID] = false,
[England_PlayerID] = false,
[Inca_PlayerID] = false,
[Aztec_PlayerID] = false,
[Iroquois_PlayerID] = false
}
};
end