Fix for missing market groups (#842)

This commit is contained in:
blitzman
2016-11-23 20:43:05 -05:00
parent 6500e6d467
commit 6bd51ff0d5
3 changed files with 3 additions and 3 deletions

BIN
eve.db

Binary file not shown.

View File

@@ -60,7 +60,7 @@ def main(db, json_path):
"evetypes": eos.gamedata.Item,
"phbtraits": eos.gamedata.Traits,
"phbmetadata": eos.gamedata.MetaData,
"marketProxy()_GetMarketGroups()": eos.gamedata.MarketGroup
"mapbulk_marketGroups": eos.gamedata.MarketGroup
}
fieldMapping = {
@@ -89,7 +89,7 @@ def main(db, json_path):
"description_en-us": "description"
},
#phbtraits???
"marketProxy()_GetMarketGroups()": {
"mapbulk_marketGroups": {
"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,marketProxy()_GetMarketGroups()"
"evegroups,evetypes,evecategories,mapbulk_marketGroups"
FlowManager(miners, writers).run(list, "en-us")