Stacking Naval and Land units like Aircraft

Vibes

Chieftain
Joined
Aug 19, 2017
Messages
1
I was wondering if a mod would be possible where naval and land units could be stacked like aircraft. What i mean by this is you can store multiple aircraft on a carrier or in an aerodrome district, and then select them from a drop down list. I would love a mod where we could store multiple ships in a harbor and multiple land units in an encampment in the same fashion. It would make it much easier to store large armies inbetween wars
 
That should be quite trivial to do. I'll try, if this works:

Code:
UPDATE Units
SET Stackable = 1
WHERE Domain = 'DOMAIN_LAND'
OR Domain = 'DOMAIN_SEA';

EDIT: Tried it, It does not work that easily.
 
Last edited:
Top Bottom