I have attempted updating one of my maps. But I get the error message "<map name> version 1 already exists in the database".
My scenario.lua looks like this:
- Code: Select all
version = 3
ScenarioInfo = {
name = 'Regor VI Highlands',
description = "<LOC regor_vi_highlands_Description>some description",
type = 'skirmish',
starts = true,
preview = '',
size = {512, 512},
map = '/maps/regor_vi_highlands.v0002/regor_vi_highlands.scmap',
save = '/maps/regor_vi_highlands.v0002/regor_vi_highlands_save.lua',
script = '/maps/regor_vi_highlands.v0002/regor_vi_highlands_script.lua',
norushradius = 77.000000,
norushoffsetX_ARMY_1 = 1.000000,
norushoffsetY_ARMY_1 = 2.000000,
norushoffsetX_ARMY_2 = -2.000000,
norushoffsetY_ARMY_2 = -1.000000,
norushoffsetX_ARMY_3 = -13.000000,
norushoffsetY_ARMY_3 = 0.000000,
norushoffsetX_ARMY_4 = 13.000000,
norushoffsetY_ARMY_4 = 0.000000,
Configurations = {
['standard'] = {
teams = {
{ name = 'FFA', armies = {'ARMY_1','ARMY_2','ARMY_3','ARMY_4',} },
},
customprops = {
['ExtraArmies'] = STRING( 'ARMY_9 NEUTRAL_CIVILIAN' ),
},
},
}}
And I have renamed the folder to <folder name>.v002
What am I missing?