laverdet / xxscreeps

Other
71 stars 16 forks source link

[Bug] CONSTRUCTION_COST constant misses 'container': 5000 #21

Closed NesCafe62 closed 3 years ago

NesCafe62 commented 3 years ago

on MMO CONSTRUCTION_COST is

CONSTRUCTION_COST: {
        "spawn": 15000,
        "extension": 3000,
        "road": 300,
        "constructedWall": 1,
        "rampart": 1,
        "link": 5000,
        "storage": 30000,
        "tower": 5000,
        "observer": 8000,
        "powerSpawn": 100000,
        "extractor": 5000,
        "lab": 50000,
        "terminal": 100000,
        "container": 5000, // this one is missing
        "nuker": 100000,
        "factory": 100000
}

on xx it is currently

{
        spawn: 15000,
        extension: 3000,
        road: 300,
        constructedWall: 1,
        rampart: 1,
        link: 5000,
        storage: 30000,
        tower: 5000,
        observer: 8000,
        powerSpawn: 100000,
        extractor: 5000,
        lab: 50000,
        terminal: 100000,
        nuker: 100000,
        factory: 100000
}