production

Mike09

Chieftain
Joined
Dec 6, 2016
Messages
4
not sure where to post this. is there a way to set the production of each tile to a minimum of 2?
 
Code:
UPDATE Terrain_YieldChanges SET YieldChange =Round(YieldChange + 2, 0) WHERE YieldType ='YIELD_PRODUCTION';
INSERT INTO Terrain_YieldChanges (TerrainType, YieldType, YieldChange) VALUES
('TERRAIN_GRASS', 'YIELD_PRODUCTION', '2'),
('TERRAIN_TUNDRA', 'YIELD_PRODUCTION', '2'),
('TERRAIN_DESERT', 'YIELD_PRODUCTION', '2'),
('TERRAIN_COAST', 'YIELD_PRODUCTION', '2'),
('TERRAIN_OCEAN', 'YIELD_PRODUCTION', '2'),
('TERRAIN_SNOW', 'YIELD_PRODUCTION', '2');
All tiles will have +2 production. And tiles that already have production an additional +2.
 
Last edited:
Back
Top Bottom