jkp1187
Unindicted Co-Conspirator
Add this in the .py file:
The map sizes here are those of Terra, which is bigger than regular map sizes. Just change x/y to what you want.Code:def getGridSize(argsList): "Enlarge the grids! According to Soren, Earth-type maps are usually huge anyway." grid_sizes = { WorldSizeTypes.WORLDSIZE_DUEL: (13,8), WorldSizeTypes.WORLDSIZE_TINY: (16,10), WorldSizeTypes.WORLDSIZE_SMALL: (21,13), WorldSizeTypes.WORLDSIZE_STANDARD: (26,16), WorldSizeTypes.WORLDSIZE_LARGE: (32,20), WorldSizeTypes.WORLDSIZE_HUGE: (38,24) }
The script itself should do fine if you change the size.
Cool. Thanks!
Does this need to be added to a specific place in the file, or can you just tack it on to the end?
And can this be added to any other script, as well? (Like to Hemispheres, for instance)?