Fix market group sourcing when generating database.

This commit is contained in:
blitzmann
2016-05-01 11:54:39 -04:00
parent 583f416373
commit d8fcbd4032
2 changed files with 3 additions and 3 deletions

View File

@@ -60,7 +60,7 @@ def main(db, json_path):
"evetypes": eos.gamedata.Item,
"phbtraits": eos.gamedata.Traits,
"phbmetadata": eos.gamedata.MetaData,
"mapbulk_marketGroups": eos.gamedata.MarketGroup
"marketProxy()_GetMarketGroups()": eos.gamedata.MarketGroup
}
fieldMapping = {
@@ -89,7 +89,7 @@ def main(db, json_path):
"description_en-us": "description"
},
#phbtraits???
"mapbulk_marketGroups": {
"marketProxy()_GetMarketGroups()": {
"marketGroupName_en-us": "marketGroupName",
"description_en-us": "description"
}

View File

@@ -80,7 +80,7 @@ if not args.nojson:
list = "dgmexpressions,dgmattribs,dgmeffects,dgmtypeattribs,dgmtypeeffects,"\
"dgmunits,invcategories,invgroups,invmetagroups,invmetatypes,"\
"invtypes,mapbulk_marketGroups,phbmetadata,phbtraits,fsdTypeOverrides,"\
"evegroups,evetypes,evecategories"
"evegroups,evetypes,evecategories,marketProxy()_GetMarketGroups()"
FlowManager(miners, writers).run(list, "multi")